Need a formula to copy data from one cell if criteria met in another cell.
Not sure if can be done. For the columns shown below, I need to copy text from the STATUS column into Status Phase only if column Dev Pipeline has a 1 or 2 in it.
Thanks for any suggestions.
Best Answer
-
Based on your criteria, the formula below should copy the information for you. It will return a blank Status Phase for any input in the Pipeline Dev column other than 1 or 2, and can be turned into a column formula.
=IF([Pipeline Dev]@row = 1, Status@row, IF([Pipeline Dev]@row = 2, Status@row, ""))
Cheers,
John
Answers
-
Based on your criteria, the formula below should copy the information for you. It will return a blank Status Phase for any input in the Pipeline Dev column other than 1 or 2, and can be turned into a column formula.
=IF([Pipeline Dev]@row = 1, Status@row, IF([Pipeline Dev]@row = 2, Status@row, ""))
Cheers,
John
-
Give this a go:
=IF(OR([Pipeline Dev]@row = 1, [Pipeline Dev]@row = 2), Status@row)
-
Thank you! That did it. I was so close on my formula, but just one added or missing piece and it doesn't work.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!