This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi –
We are trying to create a Power BI Template App that will work for many users. The sample data set we have has a number of custom fields so that the sample reports demonstrate many great visuals. However, not all users of the App will have those fields. We recognize that some visuals using the custom fields will be broken, but that should not be an issue.
In our testing of the App, when we connect to a new data source that does not have all fields, the refresh fails with error:
“Processing error The column 'XXXX' of the table wasn't found.”
Is there a way to configure a Template App so that it ignores missing fields?
Solved! Go to Solution.
HI @Shreyas1902,
Perhaps you can try to manually define a table template to initialization, then you can load correspond table records from the response table to the template.
Sample code:
Custom1 = Table.Combine({Source,#table(type table[A,B,C,D,E],{})}
Source table:
Result:
Notice:
1. The right one is the template table with all fields.
2. ' Table.combine' function will add all the fields to the result table, the columns that do not exist in the raw table will be filled with null values.
Regards,
Xiaoxin Sheng
HI @Shreyas1902,
Perhaps you can try to manually define a table template to initialization, then you can load correspond table records from the response table to the template.
Sample code:
Custom1 = Table.Combine({Source,#table(type table[A,B,C,D,E],{})}
Source table:
Result:
Notice:
1. The right one is the template table with all fields.
2. ' Table.combine' function will add all the fields to the result table, the columns that do not exist in the raw table will be filled with null values.
Regards,
Xiaoxin Sheng
Append a question mark to the column name selector when you manipulate it in Power Query. Instead of
[Column a] + [Column b]
you can write (assuming that column b is sometimes missing)
[Column a] + [Column b]?
That will yield null if the column is missing.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |