Hi Smarties,
I have a Checkbox column that will be checked automatically when an End Date is met. This checkbox is then used in a report and published that particular row in a dashboard.
=IFERROR(IF(WEEKNUMBER([End Date]@row) = WEEKNUMBER(TODAY()) - 1, 1), "")
However, I totally overlooked that this will also trigger duplicate checkboxes when we get into a new year -for example Week ending 17Feb 2023, and week ending 11th Feb 2022 will trigger both boxes.
I know there has been a post about this, but can someone remind me again, how do I tweak the formula above to work only for current year?
Thanks
S