I encountered an issue regarding the CONTEXT() formula.
I have a view named “AppDesc”.
In a VC, I want it to display a specific text only when the user is in the “AppDesc” view.
I used the following formula:
IF(CONTEXT(“View”)=”App Desc”, “Long calculated text string here”, ““)
I want it to behave such that it will skip the VC calculation when in any other views except for “App Desc” , to improve sync time.
However, when I tested and went to AppDesc view, there’s only BLANK being outputted.
I also tested with a simple non-calculated text string (see below photo) to check if the boolean expression was working, but the output was the FALSE result .
Already double-checked the View name.
Not sure if there’s a bug going on with CONTEXT(“View”) at the moment? Can anyone check?
You could possibly have a Y/N column if you wish to control calculation in a detail or summary view and base a toggle action on thyat column to control the heavy calculation. This could be something like
IF([Compute_Flag] , “Your heavy calculation”, “ “)
However this compute flag column will need to be in a User table for multiuser environment. This is so because in multiuser environment one user may want to see the heavy computation and other not.