Hello community,
I am not sure how to explain this easily but I will try
I want to map a different Google sheet name (with similar data) on Thursdays. How do I put this inside an IF statement? Is this the correct way?
I can create a filter before the Sheet but then I have to create a different router and all the following apps.
Liora
2
Hello
An element is missing in your condition. When do you compare the day ?
you could to do that =>
- Find the number of the week with setDay function (Thursday = 5)
- Compare to today
- If now = thursday return sheetA else sheetB
4 Likes
Thanks for your answer and proposed solution, Liora. That was a genius solution.
I cleared some of the date arguments and only left DDDD. Which worked as well.
{{if(formatDate(now; "DDDD") = formatDate(setDay(now; 5); "DDDD"); "Thursdays Pick Up Plan"; "Pick Up Plan")}}
Thank you so much for your help
3 Likes