Hello.
I have an Arcade Expression that is used to auto populate another field based on the results of the user input.
The problem I'm coming into is that I need to specify null values in the expression and I don't know how to write it properly....
When($feature.Staked == "Yes" && $feature.DACComplete == <Null> && $feature.QCVerify == <Null>,"Staked",
$feature.Staked == "Yes" && $feature.DACComplete == "Yes" && $feature.QCVerify == <Null>,"DAC",
$feature.Staked == "Yes" && $feature.DACComplete == "Yes" && $feature.QCVerify == "Yes","QC", "Pending")
Can someone help with this?
Many Thanks