Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
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 the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
42 | |
31 | |
27 | |
27 |