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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Solution Sage
Solution Sage

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
Solution Sage
Solution Sage

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 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.