So based on what you said, does it mean that my existing case statement with ComputerInGroup & @userid is not working properly? Or are you saying that I can use Case with ComputerInGroup and @userid but not combine @userid in the next statement?

So this will work...
Select
Case ComputerInGroup("PATIENTROOM") = 0 and (@userid = "GEN1")

but not this...
Select
Case ComputerInGroup("PATIENTROOM") = 0 and (@userid = "GEN1")
do something
Case @userid
do something
EndSelect

Sorry if the questions sound kind of dumb. Just learning kix thats all.

Thanks for all your feedback as well. I really appreciate it.