Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I'm trying to create a "details" section for a report that shows data about a selected item using text box values. The issue is that when nothing--or a filter that results in more than one row--the text values default to the "first" item of the column, showing a colletion of random values not relevant to each other. Is there any way I could make the text blank/hide it somehow without having to add a row to the data source?
- Incorrect Values
- Correct Values
I'm open to creative ideas, aside from manipulating the data itself. I haven't been using PowerBI for very long so my scope is currently pretty narrow when it comes to fixing random little things like this.
Solved! Go to Solution.
You can create 'Calculate' measures that uses 'HASONEVALUE' on the project.
Something like should work for you.
Selected Customer =
IF(
HASONEVALUE('tableName'[ProjectColumn]),
MIN('tableName'[CustomerColumn]),
""
)
Proud to be a Super User! | |
You can create 'Calculate' measures that uses 'HASONEVALUE' on the project.
Something like should work for you.
Selected Customer =
IF(
HASONEVALUE('tableName'[ProjectColumn]),
MIN('tableName'[CustomerColumn]),
""
)
Proud to be a Super User! | |
That works great, thanks for the help!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
76 | |
59 | |
35 | |
33 |
User | Count |
---|---|
100 | |
62 | |
56 | |
47 | |
41 |