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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi
I create a measure, _x=switch(TRUE(),ISBLANK([measure]),BLANK(),[measure]<10,[measure]), when data <10, it will show '<10' in the table. But I find that when I export data from service in 'Excel' format, it will show real data instead of '<10'. Why?
Is this a feature limit? where can I find this explanation? And I want to know how to disable Excel Export in specific report?
Thanks!
Solved! Go to Solution.
@minhuan Workaround: Preserve Display Formatting in Export
To ensure that Excel shows "<10" instead of the actual number, you can modify your measure to return text instead of numeric values:
_x = SWITCH( TRUE(), ISBLANK([measure]), BLANK(), [measure] < 10, "<10", FORMAT([measure], "General") )
This forces Power BI to treat the output as text, which will be preserved during export. However, note that this may limit sorting or aggregation in visuals.
@minhuan Workaround: Preserve Display Formatting in Export
To ensure that Excel shows "<10" instead of the actual number, you can modify your measure to return text instead of numeric values:
_x = SWITCH( TRUE(), ISBLANK([measure]), BLANK(), [measure] < 10, "<10", FORMAT([measure], "General") )
This forces Power BI to treat the output as text, which will be preserved during export. However, note that this may limit sorting or aggregation in visuals.
Excel export shows raw values, not formatted <10 → this is a Power BI limitation (formatting isn’t preserved).
To disable export for a report:
Report settings → Export data = Off, or
Admin portal → Tenant settings → Export data (scope to users/workspaces).
Thanks a lot, When I use export current layout, it still doesn't work.
I can't disable all export, so I think I need to use admin portal to control export type. I think this is a feature bug.
Hi @minhuan ,
This isn’t a bug, even with Export current layout, Power BI exports the underlying model values before formatting. That’s why <10> is replaced by the original number.
If you want <10> to show up in the export, make the measure return text in DAX, such as:
_x =
SWITCH(
TRUE(),
ISBLANK([measure]), BLANK(),
[measure] < 10, "<10",
FORMAT([measure], "0")
)
This makes the value text so the export matches the visual. If you need numeric sorting, create a second numeric column or measure and use Sort By Column.
To restrict export types, go to Admin Portal - Tenant settings - Export and sharing settings and limit formats (like CSV) for certain security groups.
Hi @minhuan ,
I hope the information provided above assists you in resolving the issue. If you have any additional questions or concerns, please do not hesitate to contact us. We are here to support you and will be happy to help with any further assistance you may need.
Hi @minhuan ,
I hope the above details help you fix the issue. If you still have any questions or need more help, feel free to reach out. We’re always here to support you
HI @minhuan ,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions.
Hi. First, it doesn't look like the measure does what you are explaining. So it's kind of tricky. Anyway, make sure you click export current layout when trying to export data. Other options won't show exactly what you are seeing.
For preventing the export to excel for a single report you can do what SamWiseOwl is showing. I you want to prevent it for the whole organization you can change a setting at Admin Portal - Tenant Settings.
I hope that helps
Happy to help!
Hi @minhuan
To turn off excel export change this setting:
For the second issue could you recreate it in this file:
If you want the literal value of < 10 then return that:
_x=switch(TRUE(),ISBLANK([measure]),BLANK(),[measure]<10,"<10")
If you are happy with this answer please mark as a solution for others to find !
Kudos are always appreciated! Check out our free Power BI video courses.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 56 | |
| 56 | |
| 35 | |
| 18 | |
| 14 |