Hi All i am using caculated espressions to auto pull user details into seperate holding fields different from the system last edited fields.
Whenever i work in offline mode I and try to create a new feature I get "Failed to calculate" on that field in field maps ad can't save a record. FYI its pulling GetUser($layer).fullName pulling the username works offline. so to try to solve it I added a small bit to try to return hard coded text or NULL if it can't calculate but I still get can't calculate error.
I've tried it like this:
var fullname = GetUser($layer).fullName
if (IsEmpty(fullname)) {
return "Empty"
} else {
return fullname
}