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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
DrewSmith
Helper III
Helper III

Text box with dynamic value

I'm currently using a text box as a header with a dynamic value based off of my customer name. 

This works when I'm filtering on the customer name, it comes up: 

Sales Overview - Andrew
Sales Overview - Sarah 

etc. 

But if no customer name is selected it defaults to the first one, so with no filters it's: 
Sales Overview - Adam

Can this be altered? It's not a big issues but slightly fustrating... I'd like it to read 'Sales Overview - All', for example, not the top value. 

1 ACCEPTED SOLUTION
Alf94
Super User
Super User

Hi @DrewSmith ,

 

Have you tried something likethe following?

 

IF(
  ISFILTERED(Customer),
  SELECTEDVALUE(Customer),
  'All'
)

 

If I answered your question, please mark my post as a solution.

Best,

View solution in original post

2 REPLIES 2
Alf94
Super User
Super User

Hi @DrewSmith ,

 

Have you tried something likethe following?

 

IF(
  ISFILTERED(Customer),
  SELECTEDVALUE(Customer),
  'All'
)

 

If I answered your question, please mark my post as a solution.

Best,

Genius - popped that in as a measure and worked first time. Nice!

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.