Forum Discussion
prices35
10 years agoNew Member
Referencing Unrelated Data
Hi, I am a newbie to DAX and I am working on Forecasting and need to reference the "TL APPROVALS" from the previous "Payment_No". Everything I have tried has resulted in something similar to wha...
samdthompson
Memorable Member
10 years agoLooks like you have a join happening on date rather than payment number, hence the PMT approvals summing at a month level rather than a payment level.
Make a calculated column with a related() function to make sure the pmt approval data is coming across properly, and then make the measure based on that (more long winded but you know the join is working by seeing the column). You can then just sumx() to get latest pmt approvals.