Hello Team I just want to control the input v...

Hello Team I just want to control the input value on a particular column based on another one. For Example. I need approved date column ONLY if approved column says YES. Otherwise l should not save the date value. What I did that I filled approved column YES then I filled approved date and then go back to Approved column to make it blank. Still I noticed that filled approved date is there. I applied all conditions like showif, Requiredif, Editif etc. Any one solve my issue? I ll be very grateful to you. Thanks

0 2 292
2 REPLIES 2

Set the Initial value for [approved date] to =if(not([approved]), โ€œโ€, today()). Set both Required_If and Valid_If for [approved date] to =[approved].

The initial value setting will initially set [approved date] to todayโ€™s date if [approved] is true/yes.

Setting Required_If makes [approved date] required if [approved] is true/yes.

Setting Valid_If renders any [approved date] invalid if [approved] is not true/yes, forcing the user to blank [approved date] before saving.

Thanks lot Steven

Top Labels in this Space