Scenario: If it is assumed that all transactions are recorded, then the sale_date and sale_price of a property in the OPA Properties Cleaned table should be the most recent recorded document_date and total_consideration in the Deed Transfer Records Cleaned table. Find all properties whose sale_date and sale_price need to be updated.
So far, I was able to join the two tables together (by parcel_number), and then sort both parcel number (in ascending order) and recording date (in descending order). My next move would be to use the multi-row formula, group by parcel number, and then set the number of rows to two. That's how far I have gotten.
I am currently lost on how I can use the logic expression using four columns, probably using the if else statement.
Please provide feedback on how I can resolve the issue