Localization view

its wont works please help me

You’re using SWITCH() improperly. You should be using IFS() with IN() instead.

ifs(Context(“View”) = any(LIST(Reservation Form,Checkin Registration,Check_in_Form)), “NEXT”,Context(“View”) = any(List(“Front Cashier_Form”)), “Settlement”)

I’m trying using ifs(). but only first view in list changed not all on the list

This:

IFS(
  IN(
    CONTEXT("View"),
    {"Reservation Form", "Checkin Registration", "Check_in_Form"}
  ),
    "NEXT",
  IN(
    CONTEXT("View"),
    {"Front Cashier_Form"}
  ),
    "Settlement"
)
1 Like

Thank you very much sir

1 Like