Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello,
Condition : I have Column "Company" and 15 different columns regarding the companies business like Bearing, Plastic, Roll Forming,..etc.
I have filled Yes in them as input only if they are applicable (in excel).
I want to display this information in Multi-Row Card. but I want to show only those business columns which has 'Yes' to the company that I select from Filter or Slicer.
EG - If I select Company X, it has Roll Forming and Plastics as "Yes". It should only display these two business, others should not be shown. If nothing is slected, I want the card to be blank with no information.
I have used this DAX funtion
and in Filter - "do not display when blank". It worked fine but, when I select nothing it shows me values.
To showcase blank value when nothing is selected I used this -
Please note - i have not but all the column names in the DAX as i wanted to test the formula.
Hello @Anonymous ,
Thank for your reply,
The formula that you said works! But with my logic it worked the same.
(Figure1)
But my task is whenever no company is selected, the card should not have anything written in them. (Just like when we select a card and have not provided any inputs)
I hope you understand my concern! Waiting for your reply
Hi @ypatil092 ,
Based on your description, you need to create a measure for each business column that returns the business name if the selected company is involved in that business, otherwise BLANK(). You can then add these measures to a multi-row card.
1.Below is an improvement for one of the business columns (e.g. Plastics). You can copy this logic to other business columns. Using the template above, create a measure for each business column.
Plastics_Display =
VAR SelectedCompany =
SELECTEDVALUE ( 'Master Data'[Company] )
RETURN
IF (
SELECTEDVALUE ( 'Master Data'[Plastics], "No" ) = "Yes"
&& SelectedCompany <> BLANK (),
"Plastics",
BLANK ()
)
2. Add these new measures to the multi-row card.
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 59 | |
| 31 | |
| 25 | |
| 25 |