Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hey guys,
I would like to show numbers and % in the same column in powerbi. Is this possible? For example I have these two metrics:
Sales volume A = 100,000 ( for demonstration purpose)
and share of market A = 2.6%
Now I would like to show both these in the same column in formats 100,000 and 2.6%.
Is this possible?
Please help..
Thanks,
Ash
Solved! Go to Solution.
Hi @Anonymous ,
You could use FORMAT() to create a measure like this:
Measure =
VAR _value =
MAX ( 'Table'[Column1] )
RETURN
IF ( _value <= 1, FORMAT ( _value, "#.0%" ), FORMAT ( _value, "###,###" ) )
But it returns Text not Number.
If you want a measure can be used to toggle what appears on a chart so that the end user can easily switch the data being visualised,please refer to this blog:
Dynamic Formatting of Switch Measures - Excelerator BI
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You could use FORMAT() to create a measure like this:
Measure =
VAR _value =
MAX ( 'Table'[Column1] )
RETURN
IF ( _value <= 1, FORMAT ( _value, "#.0%" ), FORMAT ( _value, "###,###" ) )
But it returns Text not Number.
If you want a measure can be used to toggle what appears on a chart so that the end user can easily switch the data being visualised,please refer to this blog:
Dynamic Formatting of Switch Measures - Excelerator BI
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Amazing Eyelyn9, your method works like a charm. Thank you so much!
@Anonymous , You can create a measure like this and try
divide(sum(Table[Volumn]), calculate(sum(Table[Volumn]), allselected(Table)))
or their is a % of total option using measure on right click in visual pane, you can use that and change visual.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.