Forum Discussion
Power BI Couldn't Refresh online - But Refresh properly in Desktop (Mashup.ErrorCode = 10224)
Power2BI This error usually happens when Power BI Service attempts to expand a column ("Column1") that was automatically generated in Desktop, but the online refresh can't find it, often due to a change in the source data shape or how Power Query handles JSON from Web.Contents. To resolve:
Check the source JSON live in Power BI Service: confirm that "Column1" exists after Table.FromList, sometimes the returned structure changes between desktop and cloud.
Use explicit column naming in Table.FromList: set the column name (e.g. {"IssueRecord"}) when converting from list, then reference it accordingly in Table.ExpandRecordColumn.
Preview and validate each query step in Power Query, especially after Web.Contents, to catch missing or renamed columns before publishing.
If possible, debug with sample data from the actual service endpoint, as column structures can shift due to API pagination or schema differences on refresh.
Making column names explicit and confirming the API's response format are key for consistent refresh across Desktop and Service
Unfortunatly still didnt work! This make me crazy as all configured well and working desktop app perfectly. Last attempt to change the code and get no errors with no result :S
let // --- Step 3: Define the recursive function for pagination --- // --- Step 4: Get all issues using the custom function --- |