Below for row "18" I need to also check rows 19 through 24... what would be the best way to do this?
Thanks
Thanks
Code:
If Sess0.Screen.getstring(18, 2, 4) = "OPEN" Then
Select Case Sess0.Screen.getstring(18, 10, 6)
Case "LGLLIT", "DOSLIT", "LGLSCU", "6"
iLitigation = "**YES**"
iMediation = "No"
Case "FCDAP "
iMediation = "**YES**"
iLitigation = "No"
Case Else
iLitigation = "No"
iMediation = "No"
End Select
Else
iLitigation = "No"
iMediation = "No"
End If