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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
srduval
Helper III
Helper III

Power BI Paginated Report Export as CSV

I have a paginated report that I have to export as a CSV and the column names contain spaces. in SQL I replaced all the spaces in the names with underscores, and then pagianted report column headers removed them as expected. However when I export the report as CSV from PBI Service, it is retaining the SQL column names, not the column names from the row header in the RDL. Is this normal or am I missing something?

7 REPLIES 7
rrichert
Regular Visitor

i figured it out. added a 'Compose' action in the power automate flow: 

replace(body('Export_To_File_for_Paginated_Reports'),'_',' ')
before . This works for my file as only the headers have underscores. 

 

rrichert_1-1741804412472.png

 

rrichert
Regular Visitor

@KarthigaM22 can you share your power automate script for removing commas from the column headers, please? I have the same issue; customer requirement to remove underscores from the column headers in the output csv. 

mohitkumawat
Super User
Super User

Hi @srduval ,

You're right, this behavior is expected in Power BI Service when exporting paginated reports to CSV.Go back to your SQL and consider modifying the column names permanently to remove spaces. This ensures consistency across Power BI and avoids confusion during export.
Try below Approch if this works 

Open your paginated report in Report Builder.

Click on the text box displaying the column header with the desired name (including spaces).

In the Properties pane, locate the property named "Value." This property defines the text displayed in the report.

You can set the "Value" property to an expression that references the actual column name (with underscores) but formats it to include spaces.

For example, if the actual column name is "Total_Sales," you could set the "Value" property to ="Total " & Fields!Total_Sales.Value

Thanks for the reply. My SQL columns don't have spaces, but the output column headers MUST have spaces. This is not my choice, but a requirment of the third party that I am creating the CSV for to be imported into their system. Why they wrote a database import specificiation to require spaces in their column headers is beyond me, but my hands are tied. I think my only option at this point would be to move the data retrival and export into power automate where I can control the CSV output more granularly.

Hi @srduval ,

 

I have a similar requirement, did you get any solution?


Regards,

Karthiga

@KarthigaM22 No in the interest of time I just exported it to excel and told the end user how to resave as a CSV. The only workaround I can think of is to use power automate to query the source data, then create a CSV file with custom headers. 

Thanks for your response, have to follow Power automate approach then. 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Solution Authors