The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. 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])
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
19 | |
18 | |
17 | |
12 |
User | Count |
---|---|
36 | |
34 | |
20 | |
19 | |
15 |