Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
pls help me in this simple set analysis, =sum({<Date={">2017.02.01"}>}Value), why this is not working?
Would like to filter the date - global date format in the begging of the script is SET DateFormat='YYYY.MM.DD';.
Thanks,
D
Check this out. I've modified the script slightly to ensure that your date is using the proper format. Preceding load on your original inline load statement.
LOAD
*,
Date(Date#(Date,'YYYY.MM.DD')) as CheckDate
;
Good luck
Oscar
Please check date format
=sum({<Date={">01.03.2017"}>}Sales_Total )
This is working in my app.
What is the format of your Date field?
try to use date format of your "Date" data field in set comparision.
what format has your "Date" field?
maybe:
sum({<Date={'>2017.02.01'}>}Value)
hope this helps
it come from the initial global variable SET DateFormat='YYYY.MM.DD'; and the source data has also this structure.
Could you please share some sample app
HI
Try this
=SUM({<Date={"> $(=num(Dat#( '2017.02.01','YYYY.02.01'))) "}>}Value)
Yes.
see attached file
hope this helps