Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'd like to see only data from 2019 to today's date using Set expression.
Date Created
1/12/2015
06/03/2016
12/31/2018
05/05/2019
1/12/2020
Thanks in advance
When you say set expression, It is difficult to us to understand where you are using?
Dimension Level : If(Year([Date Created])>=2019, [Date Created])
Using Expression : Sum(If(Year([Date Created]>=2019, Measure))
Try something like:
Sum( {<[Date Created]={">=MakeDate(2019,1) <= today()"}>} Sales)
When you say set expression, It is difficult to us to understand where you are using?
Dimension Level : If(Year([Date Created])>=2019, [Date Created])
Using Expression : Sum(If(Year([Date Created]>=2019, Measure))
Try something like:
Sum( {<[Date Created]={">=MakeDate(2019,1) <= today()"}>} Sales)
Anil,
I need both.
Thank you