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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Add string text to end of measure DAX

Hi Experts

 

Is it possibel to add the letter d to the end of the following measure so the end expected result is 23d 


measure

Avg. Time = AVERAGE(avgtime_case_close_by_country[avg_days])+0
1 ACCEPTED SOLUTION
SamInogic
Super User
Super User

Hi,

 

You can achieve this by below DAX Expression, 

 

Result = CONCATENATE(CONVERT(AVERAGE('Table'[Values]),STRING),"d")

 

Thanks!

Inogic Professional Service Division

An expert technical extension for your techno-functional business needs

Power Platform/Dynamics 365 CRM

Drop an email at crm@inogic.com

Service:  http://www.inogic.com/services/ 

Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/

Inogic Professional Services: Power Platform/Dynamics 365 CRM
An expert technical extension for your techno-functional business needs
Service: https://www.inogic.com/services/
Tips and Tricks: https://www.inogic.com/blog/

View solution in original post

3 REPLIES 3
SamInogic
Super User
Super User

Hi,

 

You can achieve this by below DAX Expression, 

 

Result = CONCATENATE(CONVERT(AVERAGE('Table'[Values]),STRING),"d")

 

Thanks!

Inogic Professional Service Division

An expert technical extension for your techno-functional business needs

Power Platform/Dynamics 365 CRM

Drop an email at crm@inogic.com

Service:  http://www.inogic.com/services/ 

Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/

Inogic Professional Services: Power Platform/Dynamics 365 CRM
An expert technical extension for your techno-functional business needs
Service: https://www.inogic.com/services/
Tips and Tricks: https://www.inogic.com/blog/
Kieran_Ultra_23
Frequent Visitor

Avg. Time = 

 

var Avg_Time = AVERAGE(avgtime_case_close_by_country[avg_days])+0

var Text_Time = Fromat(Avg_Time, "General Number")&" "&"d"

return 

  Text_Time

 

Hopefully this helps @Anonymous 

Idrissshatila
Super User
Super User

Hello @Anonymous ,

 

Try this 

measure

Avg. Time = AVERAGE(avgtime_case_close_by_country[avg_days])+0  && "d"
 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Follow me on Linkedin



Did I answer your question? Mark my post as a solution! Appreciate your Kudos
Follow me on LinkedIn linkedIn
Vote for my Community Mobile App Idea

Proud to be a Super User!




Helpful resources

Announcements
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.