I have an excel formula that is very simple and works because I can limit recursive iterations. I am not a very sane script, but this is what it is and it works.
=IF(D24="P",IF(E24="",DateStamp,E24),IF(D24="F",IF(E24="",DateStamp,E24),""))
His pass / fail check sheet, and he adds a timestamp when someone passes or fails the test. We have added a few more people, and I want to move the document to Google applications in order to work with more than one person at a time.
The only problem I came across is the circular link that causes this. In excel, I can limit # iterations in options, I no longer have this ability. Any help would be great.
EDIT: what I tried. I tried to find a VBA script input method that a colleague created that would work for me. I am not good at scripting, so I cannot do this in google script applications:
VBA script:
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 4 Then If Cells(Target.Row, 5).Value = "" Then Cells(Target.Row, 5).Value = Now End If Else End If End Sub
In theory, I tried to create a script that will copy a cell with a timestamp on it, and then try to "paste special" and just paste the value into the desired cell. This will work, except that I could not find a way to insert a special Google application script.
Thanks for any help / Edit