just use the date like this
IF(Date>"1/2/2021","y","n")
just use the date like this
IF(Date>"1/2/2021","y","n")
Thanks Ilan really thought I tried that one first but must have not quite got it correct!
So that is step one. My ultimate aim is to create formula that will update all future records
ie
After 1/4/2020 and Before 31//3/2021 = 20/21
After 1/4/2021 and Before 31//3/2022 = 21/22
Do you have any ideas how to create a formula to do this without any more manual input.
Any help much appreciated. Thank you
IF(AND(IS_AFTER(Date,"3/1/2020"),IS_BEFORE(Date,"4/31/2021")),"20/21",IF(AND(IS_AFTER(Date,"3/1/2021"),IS_BEFORE(Date,"4/31/2022")),"21/22"))
IF(AND(IS_AFTER(Date,"3/1/2020"),IS_BEFORE(Date,"4/31/2021")),"20/21",IF(AND(IS_AFTER(Date,"3/1/2021"),IS_BEFORE(Date,"4/31/2022")),"21/22"))
Thank you so much! You are so kind