Good evening everyone, I was wondering if it was possible to have an automatic action that based on the time ([Service Time]+“006:30:00”) would change the display of the app.
You can put a formula in the “Display Name” of any view in the app.
Thanks for your reply, like this?
IF(ISNOTBLANK([Operatore]),“Ciao”& " " & [Operatore],
IF(AND(ISNOTBLANK([Operatore]),TIMENOW()>FILTER(“Addetti”, AND(([User] = [Operatore]), ([Ora Servizio]=[Ora Servizio]+“008:00:00”)))),LINKTOVIEW(“Settings”),“”))
- Isn’t this formula giving you an error already?
- Also, the whole first AND() statement will never be true, and you’ll always get “”
- Where do you want to put this? What exactly are you trying to do?