Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I am experiencing a recurring issue in Power BI Desktop related to loading and using columns from an Excel table. The specific problems are as follows:
Table Loading:
I have an Excel table that loads correctly into Power BI, but when trying to use it in the modeling area, the columns are not visible or recognized in the DAX Editor.
This issue persists even after reloading the table without making any prior modifications in Power Query Editor.
Issues with DAX Formulas:
When attempting to create calculated measures or columns using DAX functions like SWITCH, the table columns do not appear as selectable options when typing the formula.
Other functions, such as IF, are also not recognized in certain instances, suggesting there might be a problem with either the version of Power BI or the DAX Editor configuration.
Troubleshooting Steps Taken:
I have tried loading different files into a new Power BI report, but the issue persists: columns do not appear in DAX formulas.
I have reviewed language settings, format settings, and cleared the cache, ensuring that auto-complete and syntax suggestions are enabled.
Impact:
I am unable to categorize or analyze the data properly due to the inability to use the columns in DAX formulas.
This affects the creation of indicators and data categorization based on specific values
Solved! Go to Solution.
Hi @Brianduberth ,
In Powerbi, different functions have their own different usage, just like the AVERAGE function and the SWITCH function mentioned in your example, they also have their own different usage.
I also create a table, a calculated column and a measure.
Column = SUM('Table'[SalesAmount])
Acount = SUM('Table'[SalesAmount])
So if you want to pop up the prompt directly you can choose Measure.
If you want to use data from Calculated column or Table, since it is in Measure, you need to use SUM function or MAX function.
So finally you can get what you want if you follow my steps.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Brianduberth ,
In Powerbi, different functions have their own different usage, just like the AVERAGE function and the SWITCH function mentioned in your example, they also have their own different usage.
I also create a table, a calculated column and a measure.
Column = SUM('Table'[SalesAmount])
Acount = SUM('Table'[SalesAmount])
So if you want to pop up the prompt directly you can choose Measure.
If you want to use data from Calculated column or Table, since it is in Measure, you need to use SUM function or MAX function.
So finally you can get what you want if you follow my steps.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Looks like you created a lot of calculated columns? Can you create these in Power Query instead?
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.