I have a formula which returns in a new column a category depending of the date and its members:
IF [DateTime_Out]>=[Date_Evaluation_Start] AND [DateTime_Out]<="2023-01-21"
THEN IF [Car]=="Toyota" THEN "Big"
ELSE IF ([Car]=="Fiat" OR [Car]=="Ford" OR [Car]=="Audi" OR [Car]=="Peugeot")
THEN "Medium"
ELSE "Little"
ENDIF
AND
IF [DateTime_Out]>="2023-01-22"
THEN IF [Car]=="Toyota" OR [Car]=="Ford" OR [Car]=="Audi")
THEN "Big"
ELSE IF [Car]=="Fiat" OR [Car]=="Peugeot"
THEN "Medium"
ELSE "Little"
ENDIF
Is there a way to make this work?
Thank you!!!