The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |