Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I'm trying to design a dashboard with a drill through page. What I want is:
For example, my data could look like this:
In the Dashboard Page, I'd like to show this Bar chart:
I'd like to drill through on one of the bars and show a waterfall chart between this date and the previous date. For example, if I drill through on 02/28/2019, I want to see this:
I can't figure out a way to keep the previous date. I think I need to do something on the data side. But how?
Thanks.
Solved! Go to Solution.
@Anonymous - Please see attached pbix for one way to do it.
The following steps make up this solution:
Anyone?? Thanks!
@Anonymous - Please see attached pbix for one way to do it.
The following steps make up this solution:
Hi there,
Just a follow up question. In the dashboard page, I can't use the date hierachy to enable the drillthough function. Essentially at the end I want to see my x-axis like this, and the drill through waterfall chart show similar YYYY MM format:
Right now I have to make the x-axis in full date format (dd/mm/yyyy) to make it work.
I tried to create a year column and a month column in the Date Relationship table, then use the new columns as drill through filters. But it's not working.
Thanks!
@Anonymous - Please see attached. Needed to adjust the Measure a bit:
Altered Value =
var _date = LASTNONBLANK('Date'[Date],CALCULATE([Basic Value]))
return CALCULATE(
SUM('Values'[value]),
ALL('Date'),
'Date Relationship'[date] = _date,
USERELATIONSHIP('Date Relationship'[Mapping Date], 'Values'[date])
)
Thank you!
Thank you very much! It works for my situation. And thank you for the detail Power Query Steps.