Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I am trying to get revenue sums displayed as to how they were before a certain date. Users should be able to use a slicer and select manually the date they want to analyze.
To do so, I created a slicer with my date table and chose the option "before". I also connected the date table to my fact table.
After that, I wrote the following measure:
VAR _selecteddate= MAX(Datetable[Date])
return
CALCULATE(Opportunity History'[Test sum revenue], TREATAS({_selecteddate},Datetable[Date]))
When using the latter, I see absolutely no changes when selecting different dates in the slicer.
Any idea how I can solve this?
Thanks in advance!
Solved! Go to Solution.
@Berl21 Try:
Max Test Revenue =
VAR _selecteddate= MAX(Datetable[Date])
return
SUMX(FILTER(ALL('Opportunity History'),'Opportunity History'[Date] <= _selecteddate),'Opportunity History'[Test sum revenue])
@Berl21 Try:
Max Test Revenue =
VAR _selecteddate= MAX(Datetable[Date])
return
SUMX(FILTER(ALL('Opportunity History'),'Opportunity History'[Date] <= _selecteddate),'Opportunity History'[Test sum revenue])
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
23 | |
15 | |
15 | |
10 | |
7 |