Possible to copy data to cell if only one of multiple columns contain information
Greetings,
Is there a formula that can be used to copy the text from a range of columns only if there is information in that column?
For example, I have Columns [Name A], [Name B], [Name C]. Only one of these columns will be filled at the any time. If one of those columns has information, copy that information into Column D
Best Answer
-
When you say "range" do you mean an actual range or do you mean you want every row of Column D to look at the same row to get the info?
If the latter, then use a nested if statement and NOT IS BLANK for each. Like...
=if(not(isblank([Name A]@row)), [Name A]@row, if(not(isblank([Name B]@row)), [Name B]@row, [Name C]@row))
Answers
-
When you say "range" do you mean an actual range or do you mean you want every row of Column D to look at the same row to get the info?
If the latter, then use a nested if statement and NOT IS BLANK for each. Like...
=if(not(isblank([Name A]@row)), [Name A]@row, if(not(isblank([Name B]@row)), [Name B]@row, [Name C]@row))
-
This is exactly what I was looking for!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.4K Get Help
- 367 Global Discussions
- 202 Industry Talk
- 432 Announcements
- 4.4K Ideas & Feature Requests
- 137 Brandfolder
- 129 Just for fun
- 128 Community Job Board
- 446 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 284 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!