Hi,
I need a button that on select, date stamps along with the users email to a field/column when in New Mode.
I have tried the following to no avail and the update context function (via googling) has me lost to try and get i.e fred.jones@constco.com - 2018-05-09T17:59:27
I tried the following:
"If(IsBlank(Signedby),ThisItem.SignedBy=Concatenate(User().Email,"-",Now()),ThisItem.SignedBy)"
I did try originally "ThisItem.SignedBy=Concatenate(User().Email,"-",Now())" but did not work did not pass go.
So we have a blank column/field that is "SignedBy" which is blank (because form is new), so that when the button is clicked it stamps the User email and the date + time in the field.
Concat and Concatenate seem to be the wrong function for what I am doing - eror messages point this out but no guidance to how to fix.
Also when the form is in the edit mode - and the button clicked (will hide it eventally if in edit mode) - I figured that the field would not change because of the else part of the if.
Thank you.