Skip to main content
May 17, 2022
Solved

Insight to 'Null argument not allowed' error

  • May 17, 2022
  • 5 replies
  • 0 views

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! 

    Best answer by stefanhelzle0001

    Yes. The value of your field iss_analyst is null. You will need to add a null check using a!isNullOrEmpty().

    5 replies

    stefanhelzle0001
    May 17, 2022

    Yes. The value of your field iss_analyst is null. You will need to add a null check using a!isNullOrEmpty().

    May 17, 2022

    Thank you!