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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! 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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors