Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Ajpcesar
New Member

How to change a text camp when I filter chart information

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!

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

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

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Ajpcesar,

 

Could you please mark the proper answers as solutions?

 

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jiascu-msft
Microsoft Employee
Microsoft Employee

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

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you. It worked.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors