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
- 63.8K Get Help
- 406 Global Discussions
- 218 Industry Talk
- 457 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!