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
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!