How do i create this DAX table in Power Query

LINUS_MAASTOK

New Member
Joined
Oct 25, 2019
Messages
11
I every one, i have a problem...

I have created a table in dax, like this

Code:
NISCountLT2 = SUMMARIZECOLUMNS(LT2[ID]; "Total"; COUNT(LT2[ID]))
to count repeated IDs

then i use this code to create a column with ranges for the report


Code:
Bucket Range = SWITCH( TRUE(); 
    NISCountLT2[Total]=1;"1";
    NISCountLT2[Total]<=2;"2";
    NISCountLT2[Total]<=3;"3";
    NISCountLT2[Total]<=4;"4";"5+")

it works fine, but when i need to work with it on Power Query PBI says "NO QUERY FOUND, please refresh the model to discard any stale data"

thats because i created the table in DAX... i need to create it on PQ , how do i do that? :confused:

BTW, excuse for my bad english
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number

Forum statistics

Threads
1,214,392
Messages
6,119,255
Members
448,879
Latest member
oksanana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top