Announcements
As you can see i have created tabular form, entries are created once and then updated many times. Everything works fine.
My requirement is: i need to capture exact date when someone change the "Interview Status" to "Scheduled". Because on the front screen gallery i need to show how many interviews were scheduled on a particular date range.
Hi @zmansuri ,
You (obviously) need a field in the data source to capture this and you would set this on the OnChange of the "Interview Status" drop down
If( Self.Selected.Value = "Scheduled", UpdateContext({varScheduled:true}) )
then the Default of the date control containing this field
If( varScheduled, Today(), Parent.Default )
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Thank you so much @WarrenBelz . It worked.
Small issue: Let's say i am on edit form and i accidently select "Scheduled". Date is captured as Today. But, now i change the dropdown value again to "-" or any other. value stays there.
I cannot test this, but it should work
If( Self.Selected.Value = "Scheduled", UpdateContext({varScheduled:true}), Reset(YourDateControl) )
You may have to turn on Formula Level Error Management in your Advanced settings are clearing date fields are problematic.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 505
WarrenBelz 502 Most Valuable Professional
Haque 324