Forum Discussion
joe_2802
8 years agoNew Member
Value comparison between dates based on filters
Trying to achieve the following and would very much appreciate any help: Report 1 (Date Filter): Date Category Carrots 02.03.2017 Donald 2.630.266.580 02.03.2017 Bugs Bunny 113.20...
- 8 years ago
Hi joe_2802,
Please refer to the uploaded .pbix file. Notice that I placed Measure1 to visual level filter of Report1, and place Measure2 to visual level filters of Report2.
Best regards,
Yuliana Gu
Anonymous
8 years agoNot applicable
joe_2802 assuming data is in 2 tables and hooked to the date dimension. if it isnt go to power query and duplicate date as a step
change =
var dat1value = calculate(sum(value), filter(table1, table1[date] = [filter1date])
var dat2value = calculate(sum(value), filter(table2, table2[date] = [filter2date])
return dat1value - dat2value
- joe_28028 years agoNew Member
Thanks! Have to walk, before I run, apologies in advance:
Data is one table.
I think I am almost able to put the path to solving it together, but I am not sure what to do specifically in terms of the solution.