May 08, 2021 08:38 AM
Hi Trying to create a formula to show all records before an actual date but not say today, last week etc.
Can see how to do if I want today etc but not an actual date
Originally, wanted to created formula to show records that fall in my accounts year end so within date range of 1 April 2020 and 31 March 2021 = 20/21. And to use for every year.
Going around in circles to find!
Can anyone help please?
Solved! Go to Solution.
May 10, 2021 12:17 PM
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"))
May 09, 2021 10:50 AM
just use the date like this
IF(Date>"1/2/2021","y","n")
May 10, 2021 06:17 AM
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
May 10, 2021 12:17 PM
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"))
May 10, 2021 01:20 PM
Thank you so much! You are so kind :grinning: