I've been attempting to get a recordSelectionFormula to work. So far, I've been able to get the 1st statement below to work. An accomplishment that took me a day or so. I need to add more critera to the original statment, but I haven't been able to figure out how to put the criteria together. Anybody have the solutions? I have a feeling that I need more quotes, but how many and where??
StrSelectionFormula = "{KB_CLAIM_POLICY_AMT_VIEW.TRANS_DATE} in #" & FromDate & "# to #" & ToDate & "#" _
And "{CLAIM_STATUS_HISTORY.STATUS_START_DATE} < #" & ToDate & "#" _
And "{CLAIM_STATUS_HISTORY.STATUS_END_DATE} >= #" & ToDate & "#" _
And "{CLAIM_TYPE_HISTORY.TYPE_START_DATE} < #" & ToDate & "#" _
And "{CLAIM_TYPE_HISTORY.TYPE_END_DATE} >= #" & ToDate & "#"
StrSelectionFormula = "{KB_CLAIM_POLICY_AMT_VIEW.TRANS_DATE} in #" & FromDate & "# to #" & ToDate & "#" _
And "{CLAIM_STATUS_HISTORY.STATUS_START_DATE} < #" & ToDate & "#" _
And "{CLAIM_STATUS_HISTORY.STATUS_END_DATE} >= #" & ToDate & "#" _
And "{CLAIM_TYPE_HISTORY.TYPE_START_DATE} < #" & ToDate & "#" _
And "{CLAIM_TYPE_HISTORY.TYPE_END_DATE} >= #" & ToDate & "#"