user(pv!servicesDelivered.iss_analyst,"firstName")& " " & user(pv!servicesDelivered.iss_analyst,"lastName")Above is the code I have, simple user fuction to grab first and last name for user. Currently getting this error:
(Expression evaluation error at function 'user': Null argument not allowed) (Data Inputs)Any insight to why? Than you in advance!
Discussion posts and replies are publicly visible
Yes. The value of your field iss_analyst is null. You will need to add a null check using a!isNullOrEmpty().
Thank you!