Forum Discussion
Anonymous
4 years agoNot applicable
Syntax for RELATEDTABLE to combine different tables
Hi All, I have two Tables as Client Table and Transaction Table. I want to create a new table using the columns from both the tables and then use SUMMARIZE function to achieve my requirement. I h...
- 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.⚡
parry2k
4 years agoSuper User
Anonymous wwhat is the relationship between all these tables?
Anonymous
4 years agoNot applicable
Hi parry2k ,
Relationships amongst these tables:
Transaction to Source System (Many to One),
Transaction to Client (Many to One) (Cross Filter= Both),
Transaction to Transaction Date (Many to One)