Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi,
This calculation gives me an average number, but is it possiblefor me to add the word 'Years' after the calculation so it is in one data card?
Thanks
Solved! Go to Solution.
You would need to FORMAT the number before it's joined.
CONCATENATE (
FORMAT (
CALCULATE (
AVERAGE ( Leavers3[Years Service] )
),
"0.00"
),
" years"
) There are different options instead of "0.00", you can find them all here
Hi,
Use this Dax Measure :
You can use CONCATENATE
CONCATENATE ( CALCULATE ( AVERAGE ( Leavers3[Years Service] ) ), " years" )
Thanks. When I do this, it does work - but I'm unable to change the decimal places. Any ideas?
You would need to FORMAT the number before it's joined.
CONCATENATE (
FORMAT (
CALCULATE (
AVERAGE ( Leavers3[Years Service] )
),
"0.00"
),
" years"
) There are different options instead of "0.00", you can find them all here
Perfect, thank you. That worked!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 24 | |
| 18 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 65 | |
| 41 | |
| 40 | |
| 39 | |
| 39 |