This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 24 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 50 | |
| 33 | |
| 24 | |
| 24 |