The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hey,
Been using powerbi desktop for 5 minutes. I am shocked that instead of SQL there is this DAX language.
Anyways, how on earth do you write a select on a table? Feels like I am back in school 😄
Using this does not work: EVALUATE logic_app_tracked_runs
Solved! Go to Solution.
Figured it out! You have to refer this "powerquery M language" lmao
https://docs.microsoft.com/en-us/powerquery-m/table-functions
let
Source = Table.SelectRows(logic_app_tracked_runs, each [correlation_clientTrackingId_g] <> null)
in
Source
Figured it out! You have to refer this "powerquery M language" lmao
https://docs.microsoft.com/en-us/powerquery-m/table-functions
let
Source = Table.SelectRows(logic_app_tracked_runs, each [correlation_clientTrackingId_g] <> null)
in
Source