Hello,
I have a table where the rows are line item entries for insurance claims. I want to populate a field that will look all the line items for a claim and return the maximum payment on each line of the claim. In the below table I'm trying to calculate "Max_Paymen t"
Claim_No Line_No Payment Max_Payment
T004 1 125 200
T004 2 50 200
T004 3 200 200
A012 1 45 45
B100 1 300 300
B100 2 250 300
I think I should be using DMax() but I'm unclear about how to write my criteria.
Thanks!
I have a table where the rows are line item entries for insurance claims. I want to populate a field that will look all the line items for a claim and return the maximum payment on each line of the claim. In the below table I'm trying to calculate "Max_Paymen t"
Claim_No Line_No Payment Max_Payment
T004 1 125 200
T004 2 50 200
T004 3 200 200
A012 1 45 45
B100 1 300 300
B100 2 250 300
I think I should be using DMax() but I'm unclear about how to write my criteria.
Thanks!
Comment