Forum Discussion
Table expression and table, what's the difference!
- 3 years ago
A table expression is a DAX function which returns a table of values: FILTER, SUMMARIZE, SUMMARIZACOLUMNS, CALCULATETABLE....These functions are mainly used to return virtual tables on which calculations are performed.
A table is a table returned as an actual entity (so you can import these tables into the model, create them in Power Query, type them in physically, create them using DAX). You can of course use DAX table expressions to return physical tables in a model.
Hope that helps.
A table expression is a DAX function which returns a table of values: FILTER, SUMMARIZE, SUMMARIZACOLUMNS, CALCULATETABLE....These functions are mainly used to return virtual tables on which calculations are performed.
A table is a table returned as an actual entity (so you can import these tables into the model, create them in Power Query, type them in physically, create them using DAX). You can of course use DAX table expressions to return physical tables in a model.
Hope that helps.