Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a data set that only goes back 70 days. I need to put an expression that only shows the last 2 months so 60ish days.
Sum({<Date={"$(v0WeeksAgo7D)"},$(vOmitSelection_Date)>}$(vMeasureCurrency))
This is my current expression which shows 7D but need to extend to 60 days and exclude anything after this date. I have a date field as my dimension and vmeasurecurrency as my measure. We use set vmeasures that are predetermined so I struggle with creating new expressions, cheers.
Any help appreciated.
@Cameron94 try this
Dates selection fixed to all dates since 70 days based on Today's date
Dates selection, dates between max date and 70 days before
You can easily test with an expression that results in the desired date in the frontend in a measure or text object to see the results.
=DATE(Today()-70))
Also you can see the expression result and if it's correct within the expression editor
@Cameron94 try this
Dates selection fixed to all dates since 70 days based on Today's date
Dates selection, dates between max date and 70 days before
You can easily test with an expression that results in the desired date in the frontend in a measure or text object to see the results.
=DATE(Today()-70))
Also you can see the expression result and if it's correct within the expression editor
Thanks a lot with a slight tweak for my report this worked perfectly!