Customize system text by condition different page

Hi All,

I need to customize system text by recognized by different page.
For example, when I go to #view = detail then “Save”, Else “Quit”?
By I had try many method still cannot, can anyone can suggest a solution.?
I use the method below, but I found that the “#view” doesn’t make sense.

Solved Solved
0 2 386
  • UX
1 ACCEPTED SOLUTION

IFS(
  CONTEXT("View") = "Page1", "Quit",
  CONTEXT("View") = "Page2", "Save"
)

View solution in original post

2 REPLIES 2

IFS(
  CONTEXT("View") = "Page1", "Quit",
  CONTEXT("View") = "Page2", "Save"
)

Thank you so much!!! It work!! Thank you!!

Top Labels in this Space