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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
timahenning2
Helper I
Helper I

PBIP - Getting 'Unable to open document' error when I try to open project

I worked on my project last night saved and closed.  The next day I tried to open the project and received this error prompt:

timahenning2_0-1696082752321.png

It seems like there is a trailing space introduced into a column name and it made its way into my model.  Researching a little I found the Power BI Rest API export to CSV inserts a trailing space for this one field.

CSV

timahenning2_1-1696083133468.png

 

REST API Call

timahenning2_2-1696083276039.png

 

The fix:

Open the BIM model in VS Code and remove the space.

 

timahenning2_3-1696083425154.png

 

This should be fixed.

 

Thanks,

 

Tim 

 

 

2 REPLIES 2
arrows20
New Member

For others facing this issue, worked on small Tabular Editor 2 script to loop through all measures and removes last character if it happens to be whitespace. Saved me a lot of time if anyone needs it

 

foreach(var measure in Model.AllMeasures)
{
    // Check if the measure name ends with a whitespace
    if (measure.Name.EndsWith(" "))
    {
        // Remove the trailing whitespace and update the measure name
        measure.Name = measure.Name.TrimEnd();
    }
}

 

timahenning2
Helper I
Helper I

One solution is to trim the column spaces in Power Query.

timahenning2_0-1696102313567.png

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.