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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Benc7777
Helper I
Helper I

I want to add some text + field name to a title of a visual

Morning / Afternoon everyone,

 

Im  sorry for being so basic, but im new to DAX (I wish it was the same as SQL)

 

So I have read up on a dynamic title and it like like I have to create a measure and then add this into the dynamic part of the title within the visual.

 

I have tried

Title = ISTEXT("Est Next Delivery" + MIN('Nextdel'[Delivered]))
 
But im obviouslyu being stupid as this doent work.
 
I just need the Text "Est Next Delivery" followed by the date in DD/MM/YY format from the field 'Nextdel'[Delivered] , there are many dates in this column but they are all the same.
 
If anyone has the time to help I would be most appriciative.
 
Thx
B
1 ACCEPTED SOLUTION

hi @Benc7777 ,

 

you mean like this?

Title = "Est Next Delivery" & FORMAT(MIN('Nextdel'[Delivered]), "dd/mm/yyyy")

View solution in original post

4 REPLIES 4
FreemanZ
Super User
Super User

hi @Benc7777 ,

 

try like:

 

Title = "Est Next Delivery" & MIN('Nextdel'[Delivered])

Brilliant thanks @FreemanZ 

 

Is there anyway to get it DD/MM/YYYY ? The field 'Nextdel'[Delivered] is set to dd/mm/yyyy ?

Benc7777_1-1730555210259.png

 

 

hi @Benc7777 ,

 

you mean like this?

Title = "Est Next Delivery" & FORMAT(MIN('Nextdel'[Delivered]), "dd/mm/yyyy")

Brilliant, many thanks indeed.

 

Appriciate your help 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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