Forum Discussion
Syntax for RELATEDTABLE to combine different tables
- 4 years ago
Anonymous try this:
SUMMARIZE( FILTER( 'Transaction', 'Transaction'[Is Test Order] = False && 'Source System'[Name] = "Professional" && 'Client'[Is Demo] = False && 'Client'[Is Client Test Mode] = False && 'Transaction Date'[Year] <> BLANK() ), Client[Vertical], Client[Client Id], Client[Client Name], 'Transaction'[Transaction Year], "Measure1" , [Measure1] , "Measure2",[Measure2])✨ Follow us on LinkedIn
Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Anonymous Well you have to check if filtering on all these conditions return any row, I cannot tell that.
✨ Follow us on LinkedIn
Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
- Anonymous4 years agoNot applicable
Hi parry2k ,
Thanks a lot for your help and time.
I have one more question here what if I need to get Transaction Date [Year] instead of Transaction [Year]. The Transaction Date table has no relation with Client Table but Transaction to Transaction Date relationship is Many to One.
How can I make the below query working?SUMMARIZE(FILTER('Transaction Date','Transaction Date'[Year] <> BLANK() &&SELECTEDVALUE('Transaction'[Is Imported]) = False &&SELECTEDVALUE('Transaction'[Is Test Order]) = False&& SELECTEDVALUE('Client'[Is Demo]) = False&& SELECTEDVALUE('Client'[Is Client Test Mode]) = False),'Transaction Date'[Year],Client[Vertical],Client[Client Id],Client[Instance Name], "Measure1",[Measure1],"Measure2",[Measure2])