Required_if

Hello,

I have looked around and could not find an answer. 

If a client wanted to update a form submission, is it possible to make a comment box be required if there are changes being made? I was thinking possibly a required_if based on a time_now column but when the forms submitted its always past the time_now column that would trigger the comment box even-though its a first time form submission. 

 

Solved Solved
0 6 96
1 ACCEPTED SOLUTION

Sure.

Put this on your Required If:

IN(
  [_THISROW],
  Table[ID]
)

Change the Table[ID] part with your actual Table name and ID column 

View solution in original post

6 REPLIES 6

You want to make it required just on edit but not when the data is being added to the table?

Yes, I would like to make a comment box required when an edit to the row is made. If that makes sense. 

Sure.

Put this on your Required If:

IN(
  [_THISROW],
  Table[ID]
)

Change the Table[ID] part with your actual Table name and ID column 

Is the ID column the Key?

Yes, sorry, I should have told that

Or, more generically:

IN([_RowNumber], Table[_RowNumber])
Top Labels in this Space