Looking for a way to write a formula to lock rows if a cell has a specific value in it, or hide the rows.
Any ideas?
Hi,
You can set this with the help of "Alerts & Actions" and the "Lock a Row" feature.
There is no way to hide the row, but you could change the color with conditional formatting and otherwise, filters and reports are the best bet.
I hope this helps you!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Ok, thanks, I did not think it was possible, but wanted to ask.
What about adding a .png to a cell based on a formula?
Happy to help!
As far as I know, it isn't possible to add images based on formulas.
Ok, bummer, thank you!
Can you take a look at this and tell me where I am wrong?
=IF(Answers22 = "", "", TODAY()),OR(IF(Answers22 = "No", "", TODAY()))
What are you trying to do? Can you share the sheet or some screenshots?
=IF(Answers22 = "", "", TODAY()) <-this is a complete function
The system doesn't know what to do with anything after that because it's complete already.
At a glance, it looks like you need a nested IF statement. What inputs do you want to return with which values?
So for the Nested is it:
=IF(OR(Answers22 ="",Answers22="No",TODAY()) ?
Here you go
If it is NULL return NULL, if it is No return NULL else date()
=IF(OR(Answers22 = "", Answers22 = "No"), "", TODAY())
Your OR function belongs in the logical statement of your IF function.
The only issue with this for you would be that TODAY() will automatically update to the current date every time you open the sheet. Smartsheet does not currently provide time stamp capabilities.
Hello Smartsheet Community! I created a formula that tracks the number of days away from the deadline that I posted on my dashboard as a visual for my students. =IF([Deadline Date]@row < TODAY(), "🔴 Past Due (" + ABS([Deadline Date]@row - TODAY()) + " days ago)", IF([Deadline Date]@row = TODAY(), "🟠 Due Today",…
Hello, I am trying to get this formula to work but am not having any luck. When I remove the last @cell….text below the formula works great. When I add it in I get an error. Any ideas? =COUNTIFS([ACCT READINESS STATUS PLV]:[ACCT READINESS STATUS PLV], OR(@cell = "PENDING LOCAL CAH", @cell = "ADDITIONAL REVIEW NEEDED LOCAL…
I have seen this question asked multiple times in the forum, but I couldn't find any clear answer provided in the answers. Please excuse me if a solution already exists, but if not, will someone please let me know if it is possible to use a previous cell value (from cell history) in a formula? I am specifically trying to…