Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
147 | |
85 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |