Sign in to join the conversation:
I have charts to show progress by week to date, month to date, and year to date. I reference another sheet to indicate the date range for each chart. Is there a way to automate my reference sheet so I don't have to change the dates manually?
if you want to show the current period I recommend using a helper column then using that as criteria in your formulas
if(weeknumber([date ref]@row) = weeknumber(today()),1,if(month([date ref]@row)= month(today()),2,if(year([date ref]@row) = year(today()),3)))
then in your criteria you can use something like
current year
[Helper C]1 >0
Current month
[Helper C]1 < 3
Current Week
[Helper C]1 = 1
This is also nice for filtering data. I often use a next period helper column to quickly navigate my larger sheets.
Thanks!
I'm receiving this message every time I try to open my sheets. I'm the only admin user. I have already performed proper troubleshooting, such as clearing the cache, logging in incognito, and logging out and back in, but the issue remains unresolved. It's been a few days, and I'm unable to track our projects and this…
I’ve created an automation that generates a document and forwards it to the individual specified in a cell. The line item also has several additional attachments associated with it. Is there a way to include those attachments with the generated document?
I have an automation set up that copies a row to another sheet each day. The automation itself works correctly, but the problem is that it copies the formulas rather than the values, which causes the formulas to break and return errors. How can I configure it to copy only the values instead of the formulas?