Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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])
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.