Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
We use Power BI to run reports from a ServiceDesk tool, Fresh Service. The integration is done via a web API link.
Recently, the Fresh Service development team updated something and broke the connection, due to an error related to the field "ID" that got an extra space in front of the name, becoming " ID".
This issue was resolved at this moment, but all our existing reports are still seing it with the wrong value. If we manually edit a report, the reports still does not work.
If I press the "Fix this" button, the report vanishes completly.
We tried clearing the permission, changing the source but still the same issue and it continues to show the old wrong " ID" instead of the corrected "ID" as the source have it now fixed.
Is there a way in Power BI to clear the cache or something similar?
Thank you,
V.
@FVal , In data transformation mode. Right click on the table and open advance editor and correct the name coming from the source.
Save that and rename the column in power query or in Data view to be the same as the old one. All visuals will work
Hi,
Still getting the error, below is the exact message:
There was an error when processing the data in the dataset.
Please try again later or contact support. If you contact support, please provide these details.
Hi @FVal
On power query editor add a step at the end and rename this column from " ID" to "ID".
Easiest way is to double click on the " ID" column name in editor window and remove space
or add the below code in your advance editor. Basicaly #"Renamed Columns" step is waht you need from below M query.
let
Source = <Something... Something..>,
#"Changed Type" = Table.TransformColumnTypes(Source,{{" ID", Type text}}),
#"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{" ID", "ID"}})
in
#"Renamed Columns"
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.