For a heading on a report, the client wants one of 4 headings to appear. This is my first Select Case and I am confused:
I am getting errors I don't understand. It is highlighting the first 'case' word.
Alan
![[smurf] [smurf] [smurf]](/data/assets/smilies/smurf.gif)
Code:
select [highlight]case[/highlight] {tracking_file.Program_Suffix}
case "N"
select case {tracking_file.f463#loan_status}
case "A"
formula="Approved Purchase"
case "S"
formula="Submitted Purchase"
end select
case "Y"
select case {tracking_file.f463#loan_status}
case "A"
formula="Approved Refi"
case "S"
formula="Submitted Refi"
end select
case else
end select
Alan
![[smurf] [smurf] [smurf]](/data/assets/smilies/smurf.gif)