Forum Discussion
Measure to x axis chart or dymanic table
- Anonymous8 years ago
justinMcC,
I make the following table using your sample data.
Create the following measures in the first table.
Measure = IF(MAX(Table1[Min_eligibe])<MAX(Table2[Column1]),"partical","full")
partical = CALCULATE(COUNTROWS(Table1),FILTER(Table1,Table1[Min_eligibe]<MAX(Table2[Column1])))
full = CALCULATE(COUNTROWS(Table1),FILTER(Table1,Table1[Min_eligibe]>=MAX(Table2[Column1])))
Create visuals as shown in the following screenshot.
Regards,
Lydia
justinMcC,
I make the following table using your sample data.
Create the following measures in the first table.
Measure = IF(MAX(Table1[Min_eligibe])<MAX(Table2[Column1]),"partical","full")
partical = CALCULATE(COUNTROWS(Table1),FILTER(Table1,Table1[Min_eligibe]<MAX(Table2[Column1])))
full = CALCULATE(COUNTROWS(Table1),FILTER(Table1,Table1[Min_eligibe]>=MAX(Table2[Column1])))
Create visuals as shown in the following screenshot.
Regards,
Lydia
Thanks Anonymous
I used a modified version of your DAX formula. It worked great, thanks for your help - it really helped me out with customer issue