Is there a way to be alerted when a cell goes from Blank --> not blank? To see when it got edited for the first time?
To be alerted when any change is made in that cell doesn't help me.
Hi,
I'm thinking that it could maybe work with a helper checkbox column and something like this.
=IF(NOT(ISBLANK(A@row)); 1; 0)
The same version but with the below changes for your and others convenience.
=IF(NOT(ISBLANK(A@row)), 1, 0)
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Would that work?
I hope that helps!
Have a fantastic day!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Yes it does!Thanks
Excellent!
Happy to help!
Is it possible to prevent the deletion of rows in a sheet? Specifically, in cases where a user legitimately requires editor permission to the underlying sheet and where the row cannot be locked (as continued editting of the row is required.) If not, what are some strategies for recovering a row that has been inadvertently…
Howdy, I am working on developing a several dashboards for our team, and for whatever reason the widgets I place are multiplying. I have copied/pasted some, but other I have just added I am ending up with dashboards that look like this: When originally I only had the top four items. It has happened on several different…
I am a construction project manager and built sheets that include actual costs for individual tasks, departments and overall project. I update the costs cells as invoices come in by manually calculating then entering in new amount. Ex: Plumbing: week 1 $300, week 2 $250, week 3 $150 = $700. I enter $700 in cell. I'm…