Hi all,
I am basically trying to integrate a report from two seperate tables. Those two tables do not have an identity key linked to each other. So in excel, this could be simply done by using countif(criteria1,criteria2) like below:
But how can I use dax measure(not calculated columns) to calculate this count value?
Your help would be much appreciated.
Solved! Go to Solution.
Hi @Anonymous,
In your scenario, you can create a calculated table to return teh count value like below:
Table = SUMMARIZE('Table2','Table2'[week],'Table2'[platform],"Count",COUNTROWS('Table2'))
Then create a measure use LookupValue() function:
Measure 2 = LOOKUPVALUE('Table'[Count],'Table'[week],CALCULATE(MAX('Table1'[week]),FILTER('Table','Table'[week]=MAX('Table'[week]) && 'Table'[platform]=MAX('Table'[platform]))),'Table'[platform],CALCULATE(MAX('Table1'[platform]),FILTER('Table','Table'[week]=MAX('Table'[week]) && 'Table'[platform]=MAX('Table'[platform]))))
Best Regards,
Qiuyun Yu
Hi @Anonymous,
In your scenario, you can create a calculated table to return teh count value like below:
Table = SUMMARIZE('Table2','Table2'[week],'Table2'[platform],"Count",COUNTROWS('Table2'))
Then create a measure use LookupValue() function:
Measure 2 = LOOKUPVALUE('Table'[Count],'Table'[week],CALCULATE(MAX('Table1'[week]),FILTER('Table','Table'[week]=MAX('Table'[week]) && 'Table'[platform]=MAX('Table'[platform]))),'Table'[platform],CALCULATE(MAX('Table1'[platform]),FILTER('Table','Table'[week]=MAX('Table'[week]) && 'Table'[platform]=MAX('Table'[platform]))))
Best Regards,
Qiuyun Yu
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
123 | |
74 | |
66 | |
53 | |
53 |
User | Count |
---|---|
199 | |
104 | |
88 | |
79 | |
77 |