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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Showing % and numbers in the same column

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

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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.

3.24.2.Format.PNG

 

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.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

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.

3.24.2.Format.PNG

 

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.

Anonymous
Not applicable

Amazing Eyelyn9, your method works like a charm. Thank you so much! 

amitchandak
Super User
Super User

@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.

refer: https://www.youtube.com/watch?v=6jTildcV2ho

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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