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 need to export a column in text format.
The column is something like this:
A,B ,C ,4.1, 4.2
If I export is CSV with power bi desktop and I open the CSV in excel type I have this format
A, B, C, 41, 42
In particular, 4.1 of csv become 41 in excel, how can I do?
Thanks
Solved! Go to Solution.
Hello @Giada90,
Can you please try this:
1. Transform the Column to Text
FormattedColumn = FORMAT('YourTableName'[YourColumnName], "0.0")
2. Add a Prefix to Force Text Interpretation in Excel
ExportColumn = "'" & FORMAT('YourTableName'[YourColumnName], "0.0")
Hope this helps.
Hello @Giada90,
Can you please try this:
1. Transform the Column to Text
FormattedColumn = FORMAT('YourTableName'[YourColumnName], "0.0")
2. Add a Prefix to Force Text Interpretation in Excel
ExportColumn = "'" & FORMAT('YourTableName'[YourColumnName], "0.0")
Hope this helps.
thanks
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |