I have this formula field that will possibly hold the page destination ID everytime a user selects a status.
IF("[entry.KBStatus.label]" = "DRAFT", 443653269,
IF("[entry.KBStatus.label]" = "ACTIVE", 445554961,
IF("[entry.KBStatus.label]" = "FOR REVIEW", 445554956)))
However, it is only getting the first value which is for Draft even if its not in Draft.
Any help will be appreciated.
Thank you