Join 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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I want my data to show dynamically millions or thousands according to their values size(if value is too small,i want it in thousands or if value is big,i want it in millions)without any measure. Is there any way for this?
Hi @Anonymous ,
Unfortunately, Power BI does not provide a function to do that without measure. But only adjust the format of the whole column as the same format. It sounds interesting and submit this idea to power bi ideas web site.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Usually when using Auto at a visual level it should Auto adjust. Otherwise you can write a logic
like
Switch(True(),
[Value]>1000000, format([Value]/1000000, "#,###M",
[Value]>1000, format([Value]/1000, "#,###K",
//add other
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 35 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 79 | |
| 37 | |
| 27 | |
| 25 |