I was using the Expression Builder, and used IFF to set the value of a textbox based on CurrentUser() status. Like this:
(IFF CurrentUser()="Admin", 1,0) +
(IFF CurrentUser()="Victor", 2,0) +
(IFF CurrentUser()="Mary", 3,0)
So that Text5 would = 1 if Admin...