Forum Discussion
Kristofferaabo
Helper IV
8 years agolookup between tables
Hi! I have a table which is linked to two tables thorugh the same relationship: "Project number" I now want to make a column which returns 'Yes' if the given project number is in either of the l...
- 8 years ago
Try this COlumn
Column = IF ( OR ( CALCULATE ( COUNTROWS ( LinkedTable1 ) ) > 0, CALCULATE ( COUNTROWS ( LinkedTable2 ) ) > 0 ), "Yes" )
Kristofferaabo
Helper IV
8 years agoNo i cant get powerBI to find/suggest the tables, I tried the RELATED function also...
Kristofferaabo
Helper IV
8 years agoIt also asked for a table? I guess it suppose to be columns?
- Zubair_Muhammad8 years ago
Community Champion
This is a DAX formula for a calculated column in Table A
When I use this formula using some dummy data...it works
Could you show the screen shot of the error you get?? or share your file??
- Kristofferaabo8 years ago
Helper IV
Hi! I think did something weird in the relationship! it works now.. ! Your solution is great thanks!