@adelitza
If you are asking abt case statement, below is the syntax
****
For more help refer to QTP help file.
If you are asking abt case statement, below is the syntax
Code:
expression="<Your expression>"
Select Case expression
Case "XXX"
'Perofrm your operation if the expression was xxx
Case "YYY"
'Perofrm your operation if the expression was xxx
Case Else
' If no matches then else case
Case End
****
For more help refer to QTP help file.