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
- Customer Resources
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!