Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 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.
On my page I have a bar chart based on number of people by dates (daily capture) and then I have a table that represents the YoY change in the number of people. In order to get the latest date to show on the table visual, I created a calculated column that has a 1 on the latest date in the table and then I placed a filter on the table visual to 1. By doing this, I am unable to click on the dates on the bar chart. How would I write the measure to say something like -- show the latest date unless another date was selected? As of right now, the visual table on the bottom of the page has to be set at the latest date, so it doesn't sum up the entire data table.
I want to be able to push on a date on the bar visual and it will populate the table visual below. Since I have the visual table filtered to latest date only, when I push on a date the table is blank.
I think I need a measure to put in the DailyYoY table that will say pick the latest date in the dataset unless there is a date that is selected.
Hi @dwel0120 ,
Based on your description, I recommend using the custom visual "Preselected Slicer".
Then we can create a measure.You can do this by using slicers to filter the largest dates by default.
Latest date =
var _maxdate = MAXX(ALL(Sample_Data),'Sample_Data'[Due Date])
return
IF(SELECTEDVALUE(Sample_Data[Due Date])=_maxdate,TRUE(),FALSE())
Please refer to my PBIX file.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
76 | |
52 | |
39 | |
35 |
User | Count |
---|---|
92 | |
67 | |
54 | |
52 | |
46 |