Forum Discussion
FMF
4 years agoFrequent Visitor
Aggregate a column in Table1 based on Match and No Match values from Table 2
Hi, I have two tables that are currently linked (Relationship) as one to many. I want to create DAX measures that will help generate Visual 1 and Visual 2. Any advice on how this can be achieved ...
- Anonymous4 years ago
Hi FMF ,
Please have a try.
Create a measure.
KPI_DAX = var result_1= CALCULATE(SUM('Table 1'[KPI]),FILTER(ALL('Table 1'),'Table 1'[Company]=SELECTEDVALUE('Table 1'[Company])&&[Check]="Match")) var result_2=CALCULATE(SUM('Table 1'[KPI]),FILTER(ALL('Table 1'),'Table 1'[Company]=SELECTEDVALUE('Table 1'[Company])&&[Check]="Not Match")) var answer = IF([Check]="Match",result_1,result_2) return answerBest Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
FarhanAhmed
Community Champion
4 years agoCreate a calculated column in your Table 1 something like this
and use it in your Table Visual
_Check = IF(ISBLANK(RELATED('Table (2)'[LinkID])),"Not Matched","Matched")FMF
4 years agoFrequent Visitor
Hi Farhan,
Thankyou for the response. However my model is based on DQ. Table 1 is from Google BigQuery and Table 2 is from Postgres. "RELATED" does not work with DQ connections
Floyd
- FMF4 years agoFrequent Visitor
Hi Farhan,
COUNTROWS also does not work in DQ connection
Floyd