Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello All,
I have 3 slicers Entity, Halfyearly, Year
I need to show data in table only all the three filters are selected and initially it should show blank page with 3 slicers not selecting anything or display message like select Entity, HalfYearly and Year to view data
Also, If I have 2 records in entity. If I select first value and other 2 slicers values it will display data accirding to first entity in table chart vice versa for second entity
I used below measures for that
Hi @Anonymous ,
Based on the description, try to use two tables.
Drag the table column to the three slicers and drag another table column to the table visual.
Measure =
var _enti = SELECTEDVALUE('table'[Entity])
RETURN
IF(ISFILTERED('table') && _enti = SELECTEDVALUE('Table (2)'[Entity]), 1, 0)
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous - you can add a measure that displays a custom message when no slicer selections as below:
Display Message =
IF(
NOT(ISFILTERED(Responses[Entity]))
|| NOT(ISFILTERED(Responses[HalfYearly]))
|| NOT(ISFILTERED(Responses[Year])),
"Select Entity, HalfYearly, and Year to view data.",
BLANK()
)
now, Insert a Card Visual on your page.Set its value to the Display Message measure.Format the card to prominently display the message, such as centering it and using a large font size.
In setting filters add the below conditions
Set the card visual to display when Hide Raw Data table = 0.
Set the table visual to display when Hide Raw Data table = 1.
it works.
Proud to be a Super User! | |
Hi @rajendraongole1
I cannot change Hide row data to 0, I cannoyt able to select anything from dropdown, it's not drop dowining
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |