WarcraftPlayer
MIS
How would I go about returning multiple values back from a function? I want to be able to get the POS and TOS values.
This is in the body.
Call BCBSADJUSTMENT(Insurance)
Function BCBSADJUSTMENT(Insurance)
If Insurance = "BCFL-ELE" Then
POS = "ADSBC"
TOS = "11"
Else
POS = "ADS"
TOS = ""
End if
This is in the body.
Call BCBSADJUSTMENT(Insurance)
Function BCBSADJUSTMENT(Insurance)
If Insurance = "BCFL-ELE" Then
POS = "ADSBC"
TOS = "11"
Else
POS = "ADS"
TOS = ""
End if