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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
S_JB
Resolver III
Resolver III

Dynamic Measure Title

Hi all

 

Are you able to create a dynamic measure title?

 

The measure I have created is a rolling week view. Currently, the weeks are named week 1,2,3 etc. with a conversion table included. Ideally, I'd like to use the logic that is in the week conversion table to dynamically power the title in the appropriate week's measure.

 

So rather than current week being week 1 it would be week 16.

 

Is this possible?

 

Kind regards

1 ACCEPTED SOLUTION
HarishKM
Super User
Super User

@S_JB   Hey Mate ,
First create a disconnected table .

HarishKM_0-1618557304020.png
Now create a measure 

Now Selected =
IF (
HASONEVALUE ( 'DIsconnected table'[Name] ),
SELECTEDVALUE ( 'DIsconnected table'[Name] ),
"Please select"
)
output will be like below.
HarishKM_1-1618557397641.png

 

or You can choose single select only.

Then create a measure using swtich function like this .
Sample =
SWITCH (
TRUE (),
SELECTEDVALUE ( 'DIsconnected table'[Name] ) = "Last 4 Week", [Last 4 week],
SELECTEDVALUE ( 'DIsconnected table'[Name] ) = "qtd", [qtd],
SELECTEDVALUE ( 'DIsconnected table'[Name] ) = "test", [Test],
[Last 4 week]
)

Then drag that measure to your viz . when ever you will select it will populate the result for you . Output will be like below.
HarishKM_2-1618557583385.png


Thank you and enjoy 

 

Kudos will be appriciated .

 

 

View solution in original post

4 REPLIES 4
S_JB
Resolver III
Resolver III

Thanks for your assistance, it's much appreciated!

HarishKM
Super User
Super User

@S_JB   Hey Mate ,
First create a disconnected table .

HarishKM_0-1618557304020.png
Now create a measure 

Now Selected =
IF (
HASONEVALUE ( 'DIsconnected table'[Name] ),
SELECTEDVALUE ( 'DIsconnected table'[Name] ),
"Please select"
)
output will be like below.
HarishKM_1-1618557397641.png

 

or You can choose single select only.

Then create a measure using swtich function like this .
Sample =
SWITCH (
TRUE (),
SELECTEDVALUE ( 'DIsconnected table'[Name] ) = "Last 4 Week", [Last 4 week],
SELECTEDVALUE ( 'DIsconnected table'[Name] ) = "qtd", [qtd],
SELECTEDVALUE ( 'DIsconnected table'[Name] ) = "test", [Test],
[Last 4 week]
)

Then drag that measure to your viz . when ever you will select it will populate the result for you . Output will be like below.
HarishKM_2-1618557583385.png


Thank you and enjoy 

 

Kudos will be appriciated .

 

 

v-cazheng-msft
Community Support
Community Support

Hi @S_JB 

Currently, the name of Measures don't support change dynamically. You can vote for the idea in Power BI Ideas.  In this case, you can dynamically change the title of the visual to provide some information to the users. For how to create dynamic title of visual, you can refer Power BI –Dynamically Title name change on visuals.

 

Best Regards

Caiyun Zheng

 

Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

lbendlin
Super User
Super User

Create two measures. One for the value and one for the title.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.