Forum Discussion
Anonymous
6 years agoNot applicable
sql to dax
Hi,
What is the DAX for the following sql please?
select field1, field2
from table1
Thank you
- Anonymous6 years ago
Hi,
I think summarize is more like 'group by'.
Thanks.
3 Replies
- AnonymousNot applicable
If you want to create a new table from existing table use below syantax:
Product Dummy = SELECTCOLUMNS( 'Product', "PName", 'Product'[Product Name], "PID", 'Product'[Product ID] )
Here I am creating Product Dummy table from Product table with just 2 fields.
Thanks.
- AnonymousNot applicable
can summarize do the same thing?
- AnonymousNot applicable
Hi,
I think summarize is more like 'group by'.
Thanks.