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! Learn more
I'm very new to PowerBi. Any help would be appreciated!
I have a Text box with a explanation about the chart presented in the view, but whem i filter some information, the chart willchange all the values, but the text dont.
I need to know how to change the text when a filter is activated.
For exemple:
1° - the chart show te total company revenue and a have a text to explain the values.
2° - I filter one of the subsidiaries and in this point I want that the text camp change the explanation for the subsidiary.
That is possible?
Thank you!
Solved! Go to Solution.
Hi @Ajpcesar,
The Textbox is just like a label. I would suggest you use a Card and a measure instead.
Measure =
IF (
MIN ( Table1[Custom] ) = "A",
"This is compnay A. Please see the chart for the details of sales",
"Not A"
)
Add this measure in the field of Card.
Best Regards,
Dale
Hi @Ajpcesar,
Could you please mark the proper answers as solutions?
Best Regards,
Dale
Hi @Ajpcesar,
The Textbox is just like a label. I would suggest you use a Card and a measure instead.
Measure =
IF (
MIN ( Table1[Custom] ) = "A",
"This is compnay A. Please see the chart for the details of sales",
"Not A"
)
Add this measure in the field of Card.
Best Regards,
Dale
Thank you. It worked.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.