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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
What is the DAX for the following sql please?
select field1, field2
from table1
Thank you
Solved! Go to Solution.
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.
can summarize do the same thing?
Hi,
I think summarize is more like 'group by'.
Thanks.