Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I am creating a dashboard that shows a list of items on the left. When an item is selected (filtered to 1) I would like the data to be displayed on the right. I have mulitple fields and by default I would like everything blank until a single item is selected from the table.
Is there a way to have a visual blank " " until a single item is selected?
I tried the following if statement but am getting an error:
View Company = IF(DISTINCTCOUNT (Engagements[Company]) = 1, Engagements [Company], " ")
The text in red is not able to associate with the table/column I need. When I enter text into that spot the formula works. It reads the table/column correct in the distinct count section but not the if value is true display company section.
Any help would be greatly appreciated.
Solved! Go to Solution.
Hi @MAJackson ,
We can try to create a measure to meet your requirement:
Measure = IF(HASONEVALUE(Engagements[Company]),VALUES(Engagements[Company]),BLANK())
Best regards,
Hi @MAJackson ,
How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?
Best regards,
Hi @MAJackson ,
We can try to create a measure to meet your requirement:
Measure = IF(HASONEVALUE(Engagements[Company]),VALUES(Engagements[Company]),BLANK())
Best regards,
| User | Count |
|---|---|
| 58 | |
| 44 | |
| 32 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 82 | |
| 66 | |
| 42 | |
| 27 | |
| 25 |