In Excel 2007, what is the formula or process to concatenate two text columns into a third column, producing a combination of all their elements?
-
This is to say, a text column of 10 single words concatenated with a text column of 20 phrases, would produce a text column with 200 phrases.
-
Answer:
If I've understood you correctly, you may find it quicker to use Access - bung the 10 words in one table, and the 20 phrases in another, and then run a union query against the two tables - this would give you every combination of the 10 x 20 fields. Probably the quickest way to do it ...
David Hardstaff at Quora Visit the source
Other answers
it's hurting my brain to try to understand what you're really asking for. i'm not sure what you're trying to do exactly because the thought behind the question isn't worded very clearly. anyhow, the 'formula' to concatenate cells together is simply the addition of an ampersand. cell A1 with the text "bork" concatenated with cell B1 with the text "meep" would be: =A1&B1 which evaluates to "borkmeep". you can add in spaces or other text characters by including it within quotes. =A1 & " â " & B1 evaluates to "bork â meep". that's about the best i can do since i don't really understand the entirety of your question. , â while i agree entirely with your sentiments, that people default to excel rather than using a proper database management system, telling someone to "use access" instead isn't very helpful. sometimes we have to use certain programs for specific reasons.
John Scardino
(Note: I didn't know there were tech help type queries on Quora!) One possible method to get combination phrases from two columns without changing the layout of data is as follows. Assuming cell A1 has "dogs", A2 has "cats", B1 has "are animals", B2 has "are dangerous" and B3 has "make noises" Enter the following formula in C1 to C6 (and as many rows as there are combinations): =OFFSET($A$1,INT((ROW()-1)/COUNTA(B:B)),0)&" "&OFFSET($B$1,MOD(ROW()-ROW($B$1),COUNTA(B:B)),0) Adding or deleting new animals or descriptions in columns A and B will automatically generate the necessary combinations.
Ganesh Ramakrishnan
If you are trying to generate all possible combinations between values in columns A and B, I highly recommend you to check out http://www.searchenginepeople.com/blog/a-search-engine-keyword-variation-generator-in-excel.html and make adjustments based on your needs.
Danilo Lee
I agree with David's solution but if it has to be done in Excel, then, assuming 10 words in column A and 20 phrases in column B in C1 type =$a$1&" "&b1. Click and drag fill down to the last of the 20 phrases in column B; cell B20. In cell B21 type =$a$2&" "&b1. Drag filldown to B40, and do on. It's a slow method but it'll get you there without resorting to vba.
Martin Dimmock
I would use the following steps - 1. Write 1 to 200 in a new column (call this list SN) 2. Generate all the possible results using concatenate(offset(List1-element1,quotient (SN,20),0),offset(List2-element1,mod(SN,20),0) The idea is to keep a recursive loop using the quotient and remainder functions in excel and using offset to pick values. Let me know if you need more clarity on this
Mehul Singh
use array ... i mean first list of text you write Vertically and second list of text you write horizontally... concatenate with Vertical and Horizontal cells...
Harshal Gajare
Related Q & A:
- What Is The Geometric Meaning Of Third Derivative Of A Function At A Point?Best solution by Mathematics
- How To Sort a GridView Column When a Header Is Clicked?Best solution by Stack Overflow
- What does research show to be the two aspects that make a good early childhood program?Best solution by Yahoo! Answers
- What would be a great video producing software?Best solution by Video Production
- What is a "strong reading" of a text?Best solution by teachmama.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.