In this tutorial, you will learn various ways to concatenate text strings, cells, ranges, columns and rows in Excel using the CONCATENATE function and "&" operator.
In your Excel workbooks, the data is not always structured according to your needs. Often you may want to split the content of one cell into individual cells, or do the opposite - combine data from two or more columns into a single column. Common examples that require concatenation in Excel are joining names and address parts, combining text with a formula-driven value, displaying dates and times in the desired format, to name a few.
In this tutorial, we are going to explore various techniques of Excel string concatenation so that you can choose the method best suited for your worksheets.
In essence, there are two ways to combine data in Excel spreadsheets:
When you merge cells, you "physically" merge two or more cells into a single cell. As a result, you have one larger cell that is displayed across multiple rows and/or columns in your worksheet.
When you concatenate cells in Excel, you combine only the contents of those cells. In other words, concatenation in Excel is the process of joining two or more values together. This method is often used to combine a few pieces of text that reside in different cells (technically, these are called text strings or simply strings) or insert a formula-calculated value in the middle of some text.
The following screenshot demonstrates the difference between these two methods:
Merging cells in Excel is the subject of our next article, and in this tutorial we will tackle two essential ways to concatenate strings in Excel - by using the CONCATENATE function and the Excel & operator.
The CONCATENATE function in Excel is designed to join different pieces of text together or combine values from several cells into one cell.
The syntax of Excel CONCATENATE is as follows:
Where text is a text string, cell reference or formula-driven value.
Below you will find a few examples of using the CONCATENATE function in Excel.
The simplest CONCATENATE formula to combine the values of cells A1 and B1 is as follows:
=CONCATENATE(A1, B1)
Please note that the values will be knit together without any delimiter, as in row 2 in the screenshot below.
To separate the values with a space, enter " " in the second argument, as in row 3 in the screenshot below.
=CONCATENATE(A1, " ", B1)
To separate the concatenated values with other delimiters such as a comma, space or slash, please see Excel CONCATENATE formulas with special characters.
There is no reason for the Excel CONCATENATE function to be limited to only joining cells' values. You can also use it to concatenate various text strings to make the result more meaningful. For example:
=CONCATENATE(A1, " ", B1, " completed")
The above formula informs the user that a certain project is completed, as in row 2 in the screenshot below. Please notice that we add a space before the word " completed" to separate the concatenated text strings.
Naturally, you can add a text string in the beginning or in the middle of your Concatenate formula as well:
=CONCATENATE("See ", A1, " ", B1)
A space (" ") is added in between the combined values, so that the result displays as "Project 1" rather than "Project1".
To make the result returned by some formula more understandable for your users, you can concatenate it with a text string that explains what the value actually is.
For example, you can use the following formula to return the current date:
=CONCATENATE("Today is ",TEXT(TODAY(), "dd-mmm-yy"))
To ensure that your CONCATENATE formulas always deliver the correct results, remember the following simple rules:
=CONCATENATE(A1, A2, A3)
instead of =CONCATENATE(A1:A3)
.In Microsoft Excel, & operator is another way to concatenate cells. This method come in very handy in many scenarios because typing the ampersand sign (&) is much quicker than typing the word "concatenate" :)
Similarly to the CONCATENATE function, you can use "&" in Excel to combine different text strings, cell values and results returned by other functions.
To see the concatenation operator in action, let's re-write the CONCATENATE formulas discussed above:
Concatenate the values in A1 and B1:
=A1&B1
Concatenate the values in A1 and B1 separated with a space:
=A1&" "&B1
Concatenate the values in A1, B1 and a text string:
=A1 & B1 & " completed"
Concatenate a string and the result of the TEXT / TODAY function:
="Today is " & TEXT(TODAY(), "dd-mmm-yy")
As demonstrated in the screenshot below, the CONCATENATE function and "&" operator return identical results:
Many users wonder which is a more efficient way to concatenate strings in Excel - CONCATENATE function or "&" operator.
The only essential difference between CONCATENATE and "&" operator is the 255 strings limit of the Excel CONCATENATE function and no such limitations when using the ampersand. Other than that, there is no difference between these two concatenation methods, nor is there any speed difference between the CONCATENATE and "&" formulas.
And since 255 is a really big number and in real-life tasks someone will hardly ever need to combine that many strings, the difference boils down to the comfort and ease of use. Some users find CONCATENATE formulas easier to read, I personally prefer using the "&" method. So, simply stick to the concatenation technique that you feel more comfortable with.
In your worksheets, you may often need to join values in a way that includes commas, spaces, various punctuation marks or other characters such as a hyphen or slash. To do this, simply include the character you want in your concatenation formula. Remember to enclose that character in quotation marks, as demonstrated in the following examples.
Concatenating two cells with a space:
=CONCATENATE(A1, " ", B1)
or =A1 & " " & B1
Concatenating two cells with a comma:
=CONCATENATE(A1, ", ", B1)
or =A1 & ", " & B1
Concatenating two cells with a hyphen:
=CONCATENATE(A1, "-", B1)
or =A1 & "-" & B1
The following screenshot demonstrates how the results may look like:
Most often, you would separate the concatenated text strings with punctuation marks and spaces, as shown in the previous example. In some cases, however, may need to separate the values with a line break, or carriage return. A common example is merging mailing addresses from data in separate columns.
A problem is that you cannot simply type a line break in the formula like a usual character, and therefore a special CHAR function is needed to supply the corresponding ASCII code to the concatenation formula:
In this example, we have the address pieces in columns A through F, and we are putting them together in column G by using the concatenation operator "&". The merged values are separated with a comma (", "), space (" ") and a line break CHAR(10):
=A2 & " " & B2 & CHAR(10) & C2 & CHAR(10) & D2 & ", " & E2 & " " & F2
In the same manner, you can separate concatenated strings with other characters such as:
Though, an easier way to include printable characters in the concatenation formula is to simply type them in double quotes as we did in the previous example.
Either way, all four of the below formulas yield identical results:
=A1 & CHAR(47) & B1
=A1 & "/" & B1
=CONCATENATE(A1, CHAR(47), B1)
=CONCATENATE(A1, "/", B1)
In order to concatenate two or more columns in Excel, you just enter a usual concatenation formula in the first cell, and then copy it down to other cells by dragging the fill handle (the small square that appears in the lower right hand corner of the selected cell).
For example, to concatenate two columns (column A and B) separating the values with a space, you enter the following formula in cell C2, and then copy it down to other cells. When you are dragging the fill handle to copy the formula, the mouse pointer changes to a cross, as shown in the screenshot below:
Please note that Microsoft Excel determines how far to copy cells after the fill handle double click based on the cells referred to by your formula. If there happen to be empty cells in your table, say cell A6 and B6 were blank in this example, the formula would be copied up to row 5 only. In this case, you would need to drag the fill handle down manually to concatenate the entire columns.
An alternative way to concatenate columns in Excel is to use the corresponding option of the Merge Cells add-in.
Combining values from multiple cells might take some effort because the Excel CONCATENATE function does not accept arrays and requires a single cell reference in each argument.
To concatenate several cells, say A1 to A4, you need either of the following formulas:
=CONCATENATE(A1, A2, A3, A4)
or
=A1 & A2 & A3 & A4
When joining a fairly small range, it's no big deal to enter all the references in the formula bar. A large range would be tedious to add, typing each cell reference manually. Below you will find 3 methods of quick range concatenation in Excel.
To quickly select several cells, you can press the CTRL key and click on each cell you want to include in the CONCATENATE formula. Here are the detailed steps:
When you need to concatenate a huge range consisting of tens or hundreds of cells, the previous method is not fast enough because it requires clicking on each cell. In this case, a better way is to use the TRANSPOSE function to return an array, and then replace it with individual cell references in one fell swoop.
=TRANSPOSE(A1:A10)
A quick and formula-free way to concatenate any range in Excel is to use the Merge Cells add-in for Excel with the "Merge all areas in selection" option turned off, as demonstrated in Combine the values of several cells into one cell.
When you concatenate a text string with a number or date, you may want to format the result differently depending on your dataset. To do this, embed the TEXT function in your Excel concatenate formula.
The TEXT(value, format_text) function has two arguments:
We have already discussed one such formula in the beginning of this tutorial that concatenates text and date.
I will remind you that when combining a text string and date, you have to use the TEXT function to display the date in the desired format. For example:
=CONCATENATE("Today is ", TEXT(TODAY(), "mm/dd/yy"))
or
="Today is " & TEXT(TODAY(), "mm/dd/yy")
A few more formula examples that concatenate a text value and number follow below:
=A2 & " " & TEXT(B2, "$#,#0.00")
- display the number with 2 decimal places and the $ sign.
=A2 & " " & TEXT(B2, "0.#")
- does not display extra zeros and the $ sign.
=A2 & " " & TEXT(B2, "# ?/???")
- display the number as a fraction.
If you are looking for the opposite of CONCATENATE in Excel, i.e. you want to split one cell into several cells, a few options are available to you:
You can find the detailed steps illustrated with formula examples and screenshots in the How to split cells in Excel tutorial.
With the Merge Cells add-in included in Ultimate Suite for Excel, you can efficiently do both:
The Merge Cells tool works with all Excel versions from 2003 to 2016 and can combine all data types including text strings, numbers, dates and special symbols. Its two key advantages are simplicity and speed - any concatenation is done in a couple of clicks. And now, let me show it to you in action.
To combine the contents of several cells, you select the range to concatenate and configure the following settings:
To concatenate two or more columns, you configure the Merge Cells' settings in a similar way, but choose Columns under "What to merge":
To combine data in each individual row, column-by-column, you choose to merge Rows, select the delimiter you want (line break in this example), configure other settings the way you want and hit the Merge button. The result may look similar to this:
To check how the Merge Cells add-in will cope with your data sets, you are welcome to use the below link to download a fully functional trial version of our Ultimate Suite for Excel. And if you are happy with the result, you can get it at a very special price:
Concatenation formula examples (.xlsx file)
Ultimate Suite 14-day fully-functional version (.zip file)
358 responses to "CONCATENATE in Excel: combine text strings, cells and columns"
Is it possible to convert a concatenated formula to an actual formula?
For example, I have 4 columns with the following:
='TM Receipts',!,P,16
I concatenate those 4 columns to get "='TM Receipts'!P16"
This is still a text string of course and I want to convert it a formula to give me the actual value of cell P16 on the TM Receipts worksheet.
Is there a way to do this?
In other words, you want to then retrieve the contents of this P16... You want the command "INDIRECT". The argument it takes is a cell address you want to get, so in your example "INDIRECT("'TM Receipts'!P16"), useful for when you have to use a formula to construct an address. I use formulas like "INDIRECT("A"&(B1*8)+1)" all the time (where A is filled with identical groups of information taking 8 rows each, B is sequential numbers starting from 0, and I'm looking for the first row of each group. On line 0 this become A1, I get A1. On line 1 it's A9, etc). Be warned, formulas with INDIRECT don't update like other formulas do, so if you insert a row above P so that your data moves down one, INDIRECT doesn't care, it'll still get whatever is now in P16.
I am not having any luck with this but I might be applying it incorrectly. I am trying to return the results in row 25 and a variable column. So in, say, D1 I would enter 'B' and then I'd get the value of B25. Unfortunately, =INDIRECT(D1 & "25") is returning 0 though. I hope that makes sense as I've been working on this for way too long and my brain is fried.
after you have entered CONCATENATE formula, press.. F2 > F9 > Enter
Suppose I have a file with columns A1:C3.
Column A (A1:A3)= Apple, Banana, Carrot (each word in a separate row)
Column B (B1:B3)= Red, Yellow, Orange (each word in a separate row)
Column C (C1:C3)= Y, N, Y (each word in a separate row)
I'd like to concatenate the words in column A into cell D1 contingent upon the value in the C column is "Y". For example I'd like the formula in D1 to return "Apple, Carrot" because Both A1 (Apple) and A3 (Carrot) have C1 and C3 with a "Y" string. Is there a way to concatenate with an IF statement argument in a separate column from what is being combined? Thanks in advance for your help!
All the best,
Whitney
While you could do something like
=CONCATENATE(IF(A$3="Y";A1;"");" ";IF(B$3="Y";B1;"");" ";IF(C$3="Y";C1;"")),
this would only work for a fixed range and for every column you would have to change the IF. What I would suggest is making an equivalent amount of columns to those you wish to concatenate, and populate them with =IF(A$3="Y";A1;""), and then combine those with concatenate.
I would use an extra column, a working scratchpad column, hide it if you don't want it seen. E column where E1 is "IF(C1="Y", A1, "")". In other words, if C is Y, then copy A, otherwise make the cell blank. Then where you want the concatenated string, just "E1&E2&E3" (though I would think A4 is a more logical destination, this is essentially SUMIF but with text). The commas are harder, to not have one on the last. I would do "IF(C1="Y", A1&", ", "")" so all entries end in a comma, then in E4 put the concatenation, then where you WANT the concatenation you put "LEFT(E4, LEN(E4)-2)". That way E4 is your target string but ending with an extra comma and space, so this would remove them.
Hi,
Is there a way where I can concatenate three different cells by keeping one cell value as constant output
A Output
10 20 A;10;20
15 21 A;15;21
17 22 A;17:22
Please suggest best formula to create above output. Thanks in Advance!!
Very helpfull thanks
Any way to retain individual cell formatting (i.e., bold for the first element) in the concatenated cell?
If I have two cells, each with a formula to display length of service (years, months and days), is there a way for me to calculate the total of the years, months and days for each cell into one?
Thanks!
I want sum of marks on sheet1 based on students count in Sheet marks and student count is located in sheet2
I use formula count if to count students in a2 cell in sheet2
In case i have 27 students
A2=27
Marks starts from row number 10
I want sum of E coloum in sheet1
E10 to value of A2+9=27
My all sheets have different number of students
And all sheets have count of students in A2 cell in perticular sheet.
Help me
I want to add concatenate formula but to remove some text from the existing values..
How can i do that
Hello!
For me to be able to help you better, please describe your task in more detail. It’ll help me understand it better and find a solution for you. Thank you.
How can I concatenate a data from regional data to a new sheet
Hello Jossy!
For me to be able to help you better, please describe your task in more detail. It’ll help me understand it better and find a solution for you. Thank you.
How can I concatenate values from two cells in to one cell, but skip few letters from one of the cell. For example.
Cell A1 has - Mr Joe
Cell B1 has - Smith
Cell C1 should print "Joe Smith" skipping "Mr" from Cell A1 values.
Hello Matt!
The number of characters to skip is unknown. It can be from 0 to 4. Therefore, it is impossible to write a formula. You can use VBA or our ready-made solution.
I'd recommend you to have a look at our Ablebits Tools - Split Names.
This tool is available as a part of our Ultimate Suite for Excel that you can install in a trial mode and use for 30 days for free: https://www.ablebits.com/files/get.php?addin=xl-suite&f=free-trial
Hi Is there any way to concat General non-text fields and output the result as a numeric? eg:
Order Version Output as a number
1234 1 12341
1234 2 12342
Thanks
Hello Gary!
If I understand your task correctly, please try the following formula:
=VALUE(A1&B1)
I hope this will help, otherwise please do not hesitate to contact me anytime.
Before reading this article I concatenated cells by using the method of = and the cells I wanted, separated by spaces for the most part. This is my formula:
= ( "Requisition" & " " & A39 &" : " & B39 & "- "& C39 & " - " & D39 & " " & E39)
One of my cells was in currency (it was Cell E39). How can I make the information (the currency) hold its format when transferred to the next cell?
F39 holds all the information input from A39 to E39. But when the information in E39 is transferred to F39, instead of seeing $210,000.00 I see 210000.
I want to know how to store alternate values in one cell. I am doing some soccer related collation using microsoft excel. For instance cell A1 is barcelona and cell B1 is juventus. I want cell C1 to represent barcelona OR juventus, I don't want cell C1 to represent barcelona AND juventus
Hello!
I recommend that you study the article on our blog about IF function with several conditions.
Is there a way to concatenate an array (obtained as a result of a formula in a cell)?
Hello!
The CONCATENATE function and the & operator cannot combine a range of cells. Therefore, it is impossible to write a formula. You can use VBA or our ready-made solution.
I'd recommend you to have a look at our Ablebits Data - Merge Cells.
This tool is available as a part of our Ultimate Suite for Excel that you can install in a trial mode and use for 30 days for free: https://www.ablebits.com/files/get.php?addin=xl-suite&f=free-trial
Hello..
In excel all the data is in Cell A1 coloumn and rows 1,2,3 so on. So i want to combine the name in Cell B1 coloumn.. So i am combine two rows using this formula =A1&A2 but i am facing problm that all the name are not belong in 2 rows they are separate in 3 rows or 4 rows.
Example -
Buff Milano
Dk. Cog
Buff Milano
Red
Buff Milano
Grade B
Black
Buff Milano
Grade B
Black
In this way i have a huge coloumn can any one solve my problem.. Is there any formula
Note :
I wan to find out this in Coloumn B -
Buff Milano Dk. Cog
Buff Milano Red
Buff Milano Grade B Black
I am trying to get the cell to read:
Assessed: 18%
Current Formula
="Assessed: "&('C&BE'!E29/'C&BE'!E24)
I want the text 'Assessed: ' and then I want to have the number 18% which comes from a different tab where 2 items are divided. This is what I get 'Assessed: 0.181818181818182' All I want to do is get this number to be a percentage but I can't seem to convert it to percentage. Using the 'Number Format' or 'Display Percentage' items don't convert it. Format Cell doesn't work. It's almost like the '&' function seems to negate these properties. [I have Mac 2011 version 14.7.7 (170905)
I'm looking for the exact same function. Have you found a solution?
Hello!
The formula below will do the trick for you:
=E24&" "&TEXT(E29,"###%")
or
=CONCATENATE(E24," ",TEXT(E29,"###%"))
Hope this is what you need.
I want to concatenate on my userform says: (Balance: and 10,000)Note 10,000 is a value on a textbox which can be different by selecting another information.
Hello!
I hope you have studied the recommendations in the above tutorial. If I got you right, the formula below will help you with your task:
=CONCATENATE("Balance: ",A1)
I hope this will help
I would like to create a password generator, using a list of words. Then be able to grab 4 random words.
I can create a number with RANDBETWEEN, but how do I convert that to a cell to CONCATENATE?
I think I solved my own question, this may not be the most elegant, but it worked.
I have a list of words, numbers, and symbols in column I. 1 to 8000
I want 4 random words combined together from the list of 8000
Created four cells with =RANDBETWEEN(1,8000) let us assume the 4 cells created are L1, M1,N1, and O1
in cell P1 I have =CONCATENATE("I",L1)
in cell Q1 I have =CONCATENATE("I",M1)
in cell R1 I have =CONCATENATE("I",N1)
and in cell S1 I have =CONCATENATE("I",O1)
Then in T1 I have
=CONCATENATE((INDIRECT(P1)),"-",(INDIRECT(P1)),"-",(INDIRECT(Q1),"-",(INDIRECT(S1)))
This returns word-made-up-password (of course the words in those cell in column I are different.
Is there a better way?
Correction:
=CONCATENATE((INDIRECT(P1)),"-",(INDIRECT(Q1)),"-",(INDIRECT(R1),"-",(INDIRECT(S1)))
Hello Tom!
If RANDBETWEEN selects numbers, for example, from 1 to 10, then each number can correspond to a word using the CHOOSE function. If you describe in more detail your task, initial data and the desired result, I can give more detailed advice.
How to insert a character in the middle of string/number?
eg: 12345 -> 123-45
Hello!
If I understand your task correctly, the following formula should work for you:
=CONCATENATE(LEFT(B12,ROUND(LEN(B12)/2,0)),"-", RIGHT(B12,LEN(B12)-ROUND(LEN(B12)/2,0)))
Hope this is what you need.
Hello!
I have a sales record covering 3 years and i want to report on the highest sales made per year. Can i nest the (=Max) function into a (=Concat) one?
So that it reads "Gross sales for 2018 were highest at $35000"
Hello!
Of course you can use something like this
=CONCAT("Gross sales for 2018 were highest at $",MAX(C1:C18))
Function arguments can be text, numbers, cell references, other Excel functions
Is there a way to exclude two specific characters whenever they appear in the cells that you are combining? Either using CONCATENATE or any other function. For example:
A2 thru A5 all have the same data: AA .
B2 thru B5 have: T-14 T-14+ T-14= T-14++= in which the hyphen, plus sign, and equals sign are not actually mathematical, but rather are part of the "model number" (no idea why). That is, they are just textual, not math.
C2 thru C5 have the data: 22 33 44 55.
I need to place the letter X then Cell A then Cell B then Cell C together, eliminating any plus signs or equals (remember, they are not mathematical). The hyphens can stay.
I tried this: =("X"&A5&(SUBSTITUTE(B5,"+",""))&C5)
It of course doesn't eliminate the "=" symbol. I get the result I want for Rows 2 and 3, for example XAAT-1422, XAAT-1433. And not the result that I want for Rows 4 and 5, which return these results: XAAT-14=44, XAAT-14=55.
And vice versa if I use =("X"&A5&(SUBSTITUTE(B5,"=",""))&C5)
I get my desired result for Rows 2 and 4 (XAAT-1422, XAAT-1444) but not for rows 3 and 5, which return XAAT-14+33 and XAAT-14++55.
So I want to be able to eliminate all + symbols and = symbols. I know this scenario is odd to use these symbols, and not mathematically, but the manufacturer uses them in model naming. Thank you for any help! I had started with a concatenate function but couldn't get it to work for me either.
Clarification as the spacing above makes it hard to read what I intended:
B2 thru B5 have:
T-14
T-14+
T-14=
T-14++=
in which the hyphen, plus sign, and equals sign are not actually mathematical, but rather are part of the "model number" ..
Hello Jillian!
If I understand your task correctly, the following formula should work for you:
="X"&A2&SUBSTITUTE(SUBSTITUTE(B2,"=",""),"+","")&C2
or
=CONCATENATE("X",A3,SUBSTITUTE(SUBSTITUTE(B3,"=",""),"+",""),C3)
I hope it’ll be helpful.
Hello Alexander,
I have a number of cells to concatenate in order to generate an unique identifier for each line item.
The cells contain, for example - A2: 200729, B2: SNK, C2: 34543
My formula reads: =concatenate(right(A2,3),"-",B2,"-",left(C2,2)) producing 729-SNK-34
In cell A2, I would like to use the second digit "0" at the beginning of the unique identifier, so need to skip the first digit in cell A2 and use the second, while the rest of the formula stays the same....so the result should then read 0729-SNK-34. Is that possible please...and thank you!
Hello!
If I understand your task correctly, the following formula should work for you:
=CONCATENATE(REPLACE(A2,1,2,""),"-",B2,"-",LEFT(C2,2))
I hope this will help
HI I am trying to work out the following formatting and was hoping you could help.
If I have a range of 90% to 100% in a cell K5 in the next cell K6 I would like it to say excellent
but if in that cell I have a range of 80% to 89% I would like it to say very good.
basically its a if this then that... but not with colors with specific text.
Hello Svetlana,
"Excellent" also can not describe the good work you have done and it's being explained in such a easy manner even a layman will become an expert in Excel.
Great work keep it up.
God bless you.
Cheers,
Yogesh
Hi,
How to auto concatenate a RANGE of Cells before space:
List 1 List 2 Concated list
AA MM MM
CC PP PP QQ
CC QQ
DD TT TT MM NN
DD MM
DD NN
thank
a1
a2 a20
how we drag a20 by using concatenate pls help
Need help...
What if i want to concatenate in excel then i also want to add a open expression
Column A = 2+1
Column B = Roses
Column C = Concatenate(A&" "&B)
Result currently as 2+1 Roses but what i need to know is how can i covert it automatically to 3 Roses
Thanks in advance
Hello!
Cell A1 now contains the text "2 + 1". If you change it to the formula = 2 + 1, then you will get the desired result.
I am building a list for a team to use that has unique hyperlinks in each row of data. I have attempted to use concatenate to add the active link to a sentence of text. Simply using concatenate, the link does not stay active. Using & the entire text becomes an active link. Is there another operator I should be adding?
Hello!
I’m sorry but your task is not entirely clear to me. For me to be able to help you better, please describe your task in more detail. Please specify what you were trying to find, what formula you used and what problem or error occurred. Give an example of the source data and the expected result.
It’ll help me understand it better and find a solution for you. Thank you.
I am trying to concatenate two separate data sets where all the data in A get's repeated for each cell in B. Is there a way to concatenate this without manually changing the $ for each cell in the concatenate function?
example:
Origin Zone Destination Zones
BTD-TGD 32218
NOD-BBK 90670
NOD-BBK-BTD 90749
The result I am looking for is:
BTD-TGD_32218
NOD-BBK_32218
NOD-BBK-BTD_32218
BTD-TGD_90670
NOD-BBK_90670
NOD-BBK-BTD_90670
And so on. Currently the only way I know to do this is =CONCATENATE(A1,"_"b$2) and then change to (...b$3) when all of the data for b2 has been completed.
Hello!
We have a tool that can solve your task in a couple of clicks: Ablebits Tools- Create Cards.
If your data is written in 3 columns -
aaa bbb ccc
123 123 123
456 456 456
789 789 789
and set Number of columns to 1 and "Add header"б
then we get the result -
aaa 123
bbb 123
ccc 123
aaa 456
bbb 456
ccc 456
aaa 789
bbb 789
ccc 789
This tool is available as a part of our Ultimate Suite for Excel that you can install in a trial mode and use for free: https://www.ablebits.com/files/get.php?addin=xl-suite&f=free-trial
If you have any (other) questions, don't hesitate to ask.
i need to know after 5 digit how put -ve sign 921023E550 ( example 92102-3E550 )
please inform us the formula
Hello!
If I understand your task correctly, the following formula should work for you:
=LEFT(F1,5)&"-"&RIGHT(F1,LEN(F1)-5)
Hope this is what you need.
How do I concatenate a name and phone number (different cells)
Sheet1!I1= Jane Dow
Sheet1!J1 = (000) 000-0000
Into one cell to read
Jane Doe (000) 000-000
Hello!
Pay attention to the following paragraph of the article above Concatenate cells with space
=CONCATENATE(MONTH(Table_Query_form_DMSlink[[#this Row],[ordre Date]]),"/Year(B15)) please explan this
Hello!
Your task is not completely clear to me. It is very difficult to understand a formula that contains unique references to your workbook worksheets. Hence, I cannot check its work, sorry. Please specify what you were trying to find, what formula you used and what problem or error occurred.
Is this how I can replace text in Column B with text in Column A?
For example, Column A has R210#P and Column B has INSERT:IMG_PREMIUM_R210#K_ARTISTLASTNAME.
I want to replace the R210#K in Column B with the R210#P in Column A.
Hello!
If the value R210#P is written in cell B1, then it cannot be changed using an Excel formula. This can only be done with the VBA macro. A cell can contain either a value or a formula. The formula cannot change the value of another cell.
can you help simple formula like number 12345678879093879, to be =12+34+56+78+87+90+93+87+9 (546) and add "+" every 2 number after but later result sum that all number?
Hello!
You can only convert text to a formula using a VBA macro. You can split these numbers by cells and then find their sum.
Is there a way to concatenate cells across multiple rows IF you there is a repeated value in another column? Here's my scenario.
THIS IS MY RAW DATA SET:
COLUMN A COLUMN B
ABC PRODUCT 1
ABC PRODUCT 2
ABC PRODUCT 3
ABC PRODUCT 4
XYZ PRODUCT 1
XYZ PRODUCT 2
XYZ PRODUCT 3
THIS IS THE RESULT I WANT:
COLUMN A COLUMN B
ABC PRODUCT 1; PRODUCT 2; PRODUCT 3; PRODUCT 4
XYZ PRODUCT 1; PRODUCT 2; PRODUCT 3
Thank you in advance for your help.
Hi, I was wondering if there's a way to concatenate all permutations within 3 columns and let's say 20 rows. So the obvious would be a2+b2+c2, a3+b3+c3 etc... but I also want a2+b3+c2, and a2 +b3 +c4, and a2+b2+c7 etc etc etc. all the way to a20+b20+c20 in all permutations in between. Is there a formula for this?
Thanks very much for tutorials, I like to know if there is a way to concatenate my data which is in single column having following format:
Addition Cost 30-
SEP-2005 00:00:00
Addition Cost 31-
OCT-2005 00:00:00
Addition Cost 31-
MAR-2006 00:00:00
Addition Cost 28-
FEB-2007 00:00:00
Reclass Cost 31-MAR-
2007 00:00:00
Addition Cost 31-
MAR-2007 00:00:00
As per format provided all i want is to concatenate every consecutive line before a blank row occurs in the following desired format:
Addition Cost 30-SEP-2005 00:00:00
Addition Cost 31-OCT-2005 00:00:00
Addition Cost 31-MAR-2006 00:00:00
Addition Cost 28-FEB-2007 00:00:00
Reclass Cost 31-MAR-2007 00:00:00
Addition Cost 31-MAR-2007 00:00:00
I have thousands of rows in my data, is there any way that concatenate function can be nested with IF function to concatenate rows between every blank rows.
Thanks in advance if someone can help me please!