Forum Discussion
Ravik
11 years agoSuper Contributor
venkateswar bonagiri
You can also try USEUNIT Method it's may help you
Syntax -
'USEUNIT unitName
like
'USEUNIT Login
lets consider your unit name is "login" in that unit u have declare function like - "userLogin"
Now read parameter from the Excel and Check function name and Flag Status like below -
'USEUNIT Login
Function MasterScript
If FunctionName = userLogin ND FlagStatus = Yes Then
Call login
End If
End Function
You can also try USEUNIT Method it's may help you
Syntax -
'USEUNIT unitName
like
'USEUNIT Login
lets consider your unit name is "login" in that unit u have declare function like - "userLogin"
Now read parameter from the Excel and Check function name and Flag Status like below -
'USEUNIT Login
Function MasterScript
If FunctionName = userLogin ND FlagStatus = Yes Then
Call login
End If
End Function