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.
Hi experts,
After several search at home, I've been able to write the following DAX code to calculate loads per quarter per item and step. It works and gives me the expected results.
But back to my office it didn't work. Thanks to the error message, I realized that "SELECTCOLUMNS" does not exist on excel 2013 !
I don't find yet the way to replace this fonction ; could you help me ?
Thanks by advance.
EVALUATE SELECTCOLUMNS( FILTER( CROSSJOIN(ProcessSheet, ForecastPerProgram), ProcessSheet[program]=ForecastPerProgram[program] ), "program", ProcessSheet[program], "YYYYQQ", RELATED(quarters[YYYYQQ]), "load", [load], "item", ProcessSheet[item], "step", ProcessSheet[step],
"WorkCenter", ProcessSheet[WorkCenter] )
Solved! Go to Solution.
Hi arq52 ,
You can use summarize() or addcolumns() to replace selectcolumns.
Please refer to: https://msdn.microsoft.com/en-us/query-bi/dax/addcolumns-function-dax and
https://msdn.microsoft.com/en-us/query-bi/dax/summarize-function-dax
Regards,
Jimmy Tao
Hi arq52 ,
You can use summarize() or addcolumns() to replace selectcolumns.
Please refer to: https://msdn.microsoft.com/en-us/query-bi/dax/addcolumns-function-dax and
https://msdn.microsoft.com/en-us/query-bi/dax/summarize-function-dax
Regards,
Jimmy Tao
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.