Forum Discussion
Relationship Problems
- 8 years ago
Hi tlenzmeier,
If i'm understanding your question correctly you want to have the calculation of payments based on calendar table, but you already have a date relationship between both tables.
Make an inactive relationship between the tables Calendar and Owner Payments (assuming this is were you have the payment information) then just change your payment measure to:
Payment Amount = CALCULATE ( SUM ( 'Owner Payments'[PaymentAmount] ); LEFT ( 'Owner Payments'[Transaction Code]; 1 ) = "P"; USERELATIONSHIP ( 'Calendar'[Date]; 'Owner Payments'[Payment Date] ) )The last part is activating the relationship you created and making the calculations based on context final result below:
Attach PBIX file.
Regards,
MFelix
Hi tlenzmeier,
If i'm understanding your question correctly you want to have the calculation of payments based on calendar table, but you already have a date relationship between both tables.
Make an inactive relationship between the tables Calendar and Owner Payments (assuming this is were you have the payment information) then just change your payment measure to:
Payment Amount =
CALCULATE (
SUM ( 'Owner Payments'[PaymentAmount] );
LEFT ( 'Owner Payments'[Transaction Code]; 1 ) = "P";
USERELATIONSHIP ( 'Calendar'[Date]; 'Owner Payments'[Payment Date] )
)The last part is activating the relationship you created and making the calculations based on context final result below:
Attach PBIX file.
Regards,
MFelix
- tlenzmeier8 years agoHelper II
So simple! Thank you!!