Solved
Help with expression
Hi all,
I'm trying to work out this expression to display a value (FY25) if a date in a picker is between Oct 1 (24) - Sept 31 (25)
Works when I use the first part > than:
IF(({DE:Event Start Date}) >= 01/10/2024, IF(({DE:Event Start Date}) <= 30/09/25, "FY25", "-"))
But not when I add the second section < than.
Also tried the following:
IF(({DE:Event Start Date}) >= "01/10/2024" && ({DE:Event End Date}) <= "30/09/25", "FY25", "-")
Any ideas out there?
Andy