Forum Discussion
Mariam1991
9 years agoHelper II
inner join
Hi, i need to join 2 tables in order to calculate a meaure in power BI i have 2 tables A and table B my aim is to add a measure in table A in sql : select count(A.ID) from A inner join B on ...
- 9 years ago
Hi Mariam1991,
Could you try the formula below to see if it works in your scenario? :smileyhappy:
New Column In Table A = COUNTROWS ( FILTER ( RELATEDTABLE ( 'TableB' ), 'TableB'[status] = "payed" ) )
Regards
Mariam1991
9 years agoHelper II
it doesn't work
New Column In Table A = COUNTROWS ( FILTER ( RELATEDTABLE ( 'TableB' ), 'TableB'[status] = "payed" && 'tableB'[DATE_str] = 'TableA'[Date] ) ) it doesnt give me the possibility to add =tableA[DATE] :(
v-ljerr-msft
9 years agoMicrosoft Employee
Hi Mariam1991,
A little weird, the formula works fine on my test.
So could you try the formula below to see if it works? :smileyhappy:
New Column In Table A =
VAR dateA =
MAX ( 'TableA'[Date] )
RETURN
COUNTROWS (
FILTER (
RELATEDTABLE ( 'TableB' ),
'TableB'[status] = "payed"
&& 'tableB'[DATE_str] = dateA
)
)
Regards
- Mariam19919 years agoHelper II
Thank you so much !