Achieve SELECT, FROM, WHERE in Power BI using CALCULATETABLE DAX

SELECT, FROM, WHERE is a very common thing is any data related language and here, in this tutorial, it shows how to achieve this by using CALCULATETABLE DAX function.

Sample statement:

January_Data_table = CALCULATETABLE(Sheet1,Sheet1[Month ]="January")


Comments