Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Dear community,
Will that be possible to display - in line or bar chart - values on different format (currency, whole num or %) based on another column ?
As you can see in the 1st screenshort from the Excel data source where I can show the values on the desired formats
But when I'm trying to do the same in power BI, I can't as the formatting is applied for the whole Column values
Is there any workaround solution for this?
Many thanks in advance for your support.
Solved! Go to Solution.
Hi fmouhcine,
This involves something like:
KPI (Display) =
VAR SelKPI = SELECTEDVALUE ( Table1[KPI] )
VAR Result =
SWITCH (
TRUE(),
SelKPI = "Revenue", "€ " & FORMAT ( [KPI Value], "" ),
SelKPI = "Volume", "€ " & FORMAT ( [KPI Value], "#,#" ),
SelKPI = "Target Coverage", FORMAT ( [KPI Value], "#%" )
)
RETURN Result
You'll have to play around with the formatting string in the second argument of the FORMAT function, but that's the rough structure that should work for what you want.
----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)
P.S. Need a more in-depth consultation for your Power BI data modeling or DAX issues? Feel free to hire me on Upwork or DM me directly on here! I would love to clear up your Power BI headaches.
Proud to be a Super User! | |
Hi @fmouhcine ,
Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.
If these also don't help, please share more detailed information and description to help us clarify your scenario to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
Hi fmouhcine,
This involves something like:
KPI (Display) =
VAR SelKPI = SELECTEDVALUE ( Table1[KPI] )
VAR Result =
SWITCH (
TRUE(),
SelKPI = "Revenue", "€ " & FORMAT ( [KPI Value], "" ),
SelKPI = "Volume", "€ " & FORMAT ( [KPI Value], "#,#" ),
SelKPI = "Target Coverage", FORMAT ( [KPI Value], "#%" )
)
RETURN Result
You'll have to play around with the formatting string in the second argument of the FORMAT function, but that's the rough structure that should work for what you want.
----------------------------------
If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)
P.S. Need a more in-depth consultation for your Power BI data modeling or DAX issues? Feel free to hire me on Upwork or DM me directly on here! I would love to clear up your Power BI headaches.
Proud to be a Super User! | |
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
83 | |
75 | |
64 | |
39 | |
34 |
User | Count |
---|---|
107 | |
56 | |
52 | |
48 | |
40 |