In-line help / instructions

Is it possible to have an in-line help or instructions to forms like this? I know this is technically possible by having an initial value each row but that requires the user to delete the instructions every time they fill the form. What should happen is when the user clicks the row, the instructions disappears and free to type an answer.

0 2 85
  • UX
2 REPLIES 2

Aurelien
Google Developer Expert
Google Developer Expert

Hi @Erwin_John_Aragon

As far as I know, this is not possible at the moment.
You may want to use a IF condition in the display name, such as

IF(ISBLANK([_THISROW].[Name]),
"Name (Enter Name)",
"Name "
)

3X_0_1_01d4a7bec60a939f721aa5b63da9a5b85bfc1df1.png

Thatโ€™s not perfect, but that could help you !

Steve
Platinum 4
Platinum 4

Nope.

In a form view, you can use the columnโ€™s Description property to provide the text that labels the input field, replacing the columnโ€™s Display Name value.

Top Labels in this Space