IF A VIEW IS SELECTED

Hi everyone, i'm wondering if in an "if" expression I can consider the view that is selected. For example.

IF(#view="RETIRO 2_Form",NOW(),"")

 

This one didn't worked.

 

Thnks

Solved Solved
0 1 74
1 ACCEPTED SOLUTION

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Gonzaloma 

I'm not sure that would work.

Anyway, you may want to use CONTEXT("View") instead

IF(
  CONTEXT("View")="RETIRO 2_Form",
  NOW(),
  ""
)

 

https://help.appsheet.com/en/articles/2347640-context

 

EDIT: added full expression

View solution in original post

1 REPLY 1

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Gonzaloma 

I'm not sure that would work.

Anyway, you may want to use CONTEXT("View") instead

IF(
  CONTEXT("View")="RETIRO 2_Form",
  NOW(),
  ""
)

 

https://help.appsheet.com/en/articles/2347640-context

 

EDIT: added full expression

Top Labels in this Space