Is there a way to set the results column to be the last date a button was pressed?
Hi @Samuel_Langford !
Is this what you’re trying to accomplish ?
The action formula I used in the button is this one:
thisRow.ModifyRows(
thisRow.[Last Pushed On],
Now()
)
It inserts the value of Now()
(using the default “second” precision) in thisRow.[Last Pushed On]
.
I hope this helps
1 Like
Yes, this is perfect thank you so much!
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.