How to know if user interacts with form

Hello everyone, is there any way I can know if the user interacts with the form. Because I only want to change the value of one input according to another field on the same form when the user interacts with the later field.

Solved Solved
0 9 402
1 ACCEPTED SOLUTION

Well thereโ€™s two ways to go about this:

  1. you can stick with using the initial value formula;
    • this means it only works curing the record creation, after that it would stop the โ€œautomaticโ€ setting of the value;
    • but it is much simpler to integrate. Or,
  2. you can create an โ€œinputโ€ field and use that for the input, using your original column as the actual โ€œoutputโ€
    • this gives you the ability to have things automatically set for you
    • itโ€™s much more involved to create.

For the first one, I would think a formula like this might work for the initial value formula:

ifs(isnotblank([Column1]), 
  if([Column1] = "One", 
    "None", 
  "One")
)

View solution in original post

9 REPLIES 9
Top Labels in this Space