Simple status initial value

hi, im a newbie on appsheet, currently im working with my profile information data sheet,

i need some subjection on how to automate may employment status column, with initial value โ€œACTIVEโ€,โ€œRESIGNEDโ€ status,

example: if the employment end date column is leave blank, the status should be= โ€œACTIVEโ€, and if not blank should be "RESIGNED.

Iโ€™ve attached screenshot and expression below for reference.

IF(([EMPLOYMENT END DATE] =ISBLANK("")) ,โ€œResignedโ€,โ€œActiveโ€)

3X_7_a_7a01fda340ff6f54955370a05d4bb2938045dd02.png

0 4 200
  • UX
4 REPLIES 4

@Christopher_Roque
Your expression syntax is not correct

IF(
    ISBLANK([EMPLOYMENT END DATE]),
    "Active",
    "Resigned"
)

thanks works great

Excellent, thanks for the feedback. Youโ€™re welcome

Steve
Platinum 4
Platinum 4

For reference:

Top Labels in this Space