Forum Discussion
DAX Help!
- 8 years ago
Hi,
You can do it with a summerized table
create new dax table :
SummerizedTable = SUMMARIZE(Table1,Table1[PatientProfileId],"Counter",COUNTROWS(Table1))
after that you have to make a relationship between the summerizedtable and your original table.
Then you just need to create new chart put the "counter" column in the x axis and in the value put the patienID and change it to count (if you take the column from the original table make it count distinct).
after you can add any filter you want.
Hi jbarta,
What you're looking for are mostly native features of Power BI - DAX/M usually isn't needed for basic data modeling like this. I've mocked up a PBIX for you to demonstrate how this kind of report would be built. Take a look and feel free to come back with any questions you might have.