Conditionally Show Columns Based On a View

For the life of me I cannot get this to work!

What is #view? what is “#view=Something” Does #view return the View Name? I cannot find any documentation on it.

I want only to show a column in a particular Form view.

I am not sure how to use #view in an IF, IFS or SWITCH expression?

Has anyone done this?

0 2 563
2 REPLIES 2

@PocketSurvey
That’s a URL parameter to direct the app to a certain view. You cannot use that HTML directive with any expression. What you are looking for is CONTEXT("ViewName") = "Something"




OR
AND(
    CONTEXT("ViewType") = "form",
    CONTEXT("ViewName") = "Something_Form" // if you're using AppSheet generated form view, otherwise specify your own view name here
)

Thanks I will tray that

Top Labels in this Space