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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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