Perhaps I'm not thinking about this correctly, but I have a table with 2 date fields in it, and I'm trying to figure out if they're not in the same date quarter.
A record is outstanding if the 2 dates are not in the same calendar quarter, and I'm trying to figure out a formula to do this. So far I have the following, but I don't think it's correct:
IF
({Claim_Releases.release_date} = Calendar1stQtr AND {Claims.Release_Approval_Date} <> Calendar1stQtr) OR
({Claim_Releases.release_date} = Calendar2ndQtr AND {Claims.Release_Approval_Date} <> Calendar2ndQtr) OR
({Claim_Releases.release_date} = Calendar3rdQtr AND {Claims.Release_Approval_Date} <> Calendar3rdQtr) OR
({Claim_Releases.release_date} = Calendar4thQtr AND {Claims.Release_Approval_Date} <> Calendar4thQtr) THEN
"CLAIM OUTSTANDING"
ELSE
"CLAIM NOT OUTSTANDING"
When I search through the data, I find records that say they're "OUTSTANDING" but the dates appear in the same quarter. Any help is greatly appreciated, thanks!
A record is outstanding if the 2 dates are not in the same calendar quarter, and I'm trying to figure out a formula to do this. So far I have the following, but I don't think it's correct:
IF
({Claim_Releases.release_date} = Calendar1stQtr AND {Claims.Release_Approval_Date} <> Calendar1stQtr) OR
({Claim_Releases.release_date} = Calendar2ndQtr AND {Claims.Release_Approval_Date} <> Calendar2ndQtr) OR
({Claim_Releases.release_date} = Calendar3rdQtr AND {Claims.Release_Approval_Date} <> Calendar3rdQtr) OR
({Claim_Releases.release_date} = Calendar4thQtr AND {Claims.Release_Approval_Date} <> Calendar4thQtr) THEN
"CLAIM OUTSTANDING"
ELSE
"CLAIM NOT OUTSTANDING"
When I search through the data, I find records that say they're "OUTSTANDING" but the dates appear in the same quarter. Any help is greatly appreciated, thanks!