I have a database
Record1
Column A CaseNumber = 123
Column B CaseOutcome =blank
Record2
Column A CaseNumber =456
Column B CaseOutcome =RESOLVED
Record3
Colulmn A CaseNumber =398
Column B CaseOutcome = blank
I want to make labels (mailing labels). I want CaseNumer to print on the first label, I want CaseOutcome to print on the second label UNLESS CaseOutcome is blank. When CaseOutcome for the current record is blank, I want it to print the NEXT CaseNumber and so on. In other words I want to move to the next record when the field in column b is blank.
With my sample above, the labels would print
123 456 RESOLVED 398
Record1
Column A CaseNumber = 123
Column B CaseOutcome =blank
Record2
Column A CaseNumber =456
Column B CaseOutcome =RESOLVED
Record3
Colulmn A CaseNumber =398
Column B CaseOutcome = blank
I want to make labels (mailing labels). I want CaseNumer to print on the first label, I want CaseOutcome to print on the second label UNLESS CaseOutcome is blank. When CaseOutcome for the current record is blank, I want it to print the NEXT CaseNumber and so on. In other words I want to move to the next record when the field in column b is blank.
With my sample above, the labels would print
123 456 RESOLVED 398