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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

PowerShell Export-Csv not as expected

hello, i am trying to export results as a table to a csv

 

Get-PowerBIWorkspace | Format-table | Export-Csv C:\Users\spaldg\Downloads\wksp.csv -NoTypeInformation

 

when displayed on screen (without the Export) it looks fine

screen.png

 

 

but when saved as a .csv, this is what i get

file.png

 

what am i doing wrong ?

thanks

g

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Generally you don't want to use Export-Csv - Write-Output  gives you better control over the result, especially for true CSV files.

But if you're sticking with Export-Csv, read this article

Why Can’t I Pipe Format-Table to Export-Csv (and get something useful)? | PowerShell (microsoft.com).

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

Please update the command line as follow and check whether you can get what you want:

Get-PowerBIWorkspace | Format-table | Export-Csv -Path C:\Users\spaldg\Downloads\wksp.csv -NoTypeInformation -Delim ";"

Export-Csv

Best Regards

lbendlin
Super User
Super User

Generally you don't want to use Export-Csv - Write-Output  gives you better control over the result, especially for true CSV files.

But if you're sticking with Export-Csv, read this article

Why Can’t I Pipe Format-Table to Export-Csv (and get something useful)? | PowerShell (microsoft.com).

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.