In this article, you will learn various ways to concatenate text strings, numbers and dates in Excel using the CONCATENATE function and "&" operator. We will also discuss formulas to combine individual cells, columns and ranges.
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 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 you can choose the method best suited for your worksheets.
What is "concatenate" in Excel?
In essence, there are two ways to combine data in Excel spreadsheets:
- Merging cells
- Concatenating cells' values
When you merge cells, you "physically" join 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.
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 a separate article, and in this tutorial, we'll discuss the two main ways to concatenate strings in Excel - by using the CONCATENATE function and the concatenation operator (&).
Excel CONCATENATE function
The CONCATENATE function in Excel is used 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.
The CONCATENATE function is supported in all versions of Excel 365 - 2007.
For example, to concatenate the values of B6 and C6 with a comma, the formula is:
=CONCATENATE(B6, ",", C6)
More examples are shown in the image below:
Note. In Excel 365 - Excel 2019, the CONCAT function is also available, which is a modern successor of CONCATENATE with exactly the same syntax. Although the CONCATENATE function is kept for backward compatibility, Microsoft does not give any promises that it will be supported in future versions of Excel.
Using CONCATENATE in Excel - things to remember
To ensure that your CONCATENATE formulas always deliver the correct results, remember the following simple rules:
- Excel CONCATENATE function requires at least one "text" argument to work.
- In one formula, you can concatenate up to 255 strings, a total of 8,192 characters.
- The result of the CONCATENATE function is always a text string, even when all of the source values are numbers.
- Unlike the CONCAT function, Excel CONCATENATE does not recognize arrays. Each cell reference must be listed separately. For example, you should use CONCATENATE(A1, A2, A3) and not CONCATENATE(A1:A3).
- If any of the arguments is invalid, the CONCATENATE function returns a #VALUE! error.
"&" operator to concatenate strings in Excel
In Microsoft Excel, the ampersand sign (&) is another way to concatenate cells. This method comes in very handy in many scenarios since typing an ampersand is much faster than typing the word "concatenate" :)
For example, to concatenate two cell values with a space in-between, the formula is:
=A2&" "&B2
How to concatenate in Excel - formula examples
Below you will find a few examples of using the CONCATENATE function in Excel.
Concatenate two or more cells without separator
To combine the values of two cells into one, you use the concatenation formula in its simplest form:
=CONCATENATE(A2, B2)
Or
=A2&B2
Please note that the values will be knit together without any delimiter like in the screenshot below.
To concatenate multiple cells, you need to supply each cell reference individually, even if you are combining contiguous cells. For example:
=CONCATENATE(A2, B2, C2)
Or
=A2&B2&C2
The formulas work for both text and numbers. In case of numbers, please keep in mind that the result is a text string. To convert it to number, just multiply CONCATENATE's output by 1 or add 0 to it. For instance:
=CONCATENATE(A2, B2)*1
Tip. In Excel 2019 and higher, you can use the CONCAT function to quickly concatenate multiple cells using one or more range references.
Concatenate cells with a space, comma or other delimiter
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 put the desired character 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(A2, " ", B2)
or
=A2 & " " & B2
Concatenating two cells with a comma:
=CONCATENATE(A2, ", ", B2)
or
=A2 & ", " & B2
Concatenating two cells with a hyphen:
=CONCATENATE(A2, "-", B2)
or
=A2 & "-" & B2
The following screenshot demonstrates how the results may look like:
Tip. In Excel 2019 and higher, you can use the TEXTJOIN function to merge strings from multiple cells with any delimiter that you specify.
Concatenating text string and cell value
There is no reason for the Excel CONCATENATE function to be limited to only joining cells' values. You can also use it to combine text strings to make the result more meaningful. For example:
=CONCATENATE(A2, " ", B2, " 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. A space (" ") is also inserted between the combined values, so that the result displays as "Project 1" rather than "Project1".
With the concatenation operator, the formula can be written this way:
=A2 & " " & B2 & " completed"
In the same manner, you can add a text string in the beginning or in the middle of your concatenation formula. For example:
=CONCATENATE("See ", A2, " ", B2)
="See " & A2 & " " & B2
Join text string and another formula
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 in the desired format and specify what kind of date that is:
=CONCATENATE("Today is ",TEXT(TODAY(), "mmmm d, yyyy"))
="Today is " & TEXT(TODAY(), "dd-mmm-yy")
Tip. If you would like to delete the source data without affecting the resulting text strings, use the "Paste special - values only" option to convert formulas to their values.
Concatenate text strings with line breaks
Most often, you would separate the resulting text strings with punctuation marks and spaces, as shown in the previous example. In some cases, however, there may be a 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. Instead, you use the CHAR function to supply the corresponding ASCII code to the concatenation formula:
- On Windows, use CHAR(10) where 10 is the character code for Line feed.
- On Mac, use CHAR(13) where 13 is the character code for Carriage return.
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
The CONCATENATE function would take this shape:
=CONCATENATE(A2, " ", B2, CHAR(10), C2, CHAR(10), D2, ", ", E2, " ", F2)
Either way, the result is a 3-line text string:
In the same manner, you can separate final strings with other characters such as:
- Double quotes (") - CHAR(34)
- Forward slash (/) - CHAR(47)
- Asterisk (*) - CHAR (42)
- The full list of ASCII codes is available here.
How to concatenate columns in Excel
To join two or more columns, just enter your 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 combine two columns (column A and B) delimiting the values with a space, the formula in C2 copied down is:
=CONCATENATE(A2, " ", B2)
Or
= A2 & " " & B2
For more information, please see How to merge two columns in Excel without losing data.
Combine text and numbers keeping formatting
When concatenating a text string with a number, percentage or date, you may want to keep the original formatting of a numeric value or display it in a different way. This can be done by supplying the format code inside the TEXT function, which you embed in a concatenation formula.
In the beginning of this tutorial, we have already discussed a formula that concatenates text and date.
And here are a few more formula examples that combine text and number:
Number with 2 decimal places and the $ sign:
=A2 & " " & TEXT(B2, "$#,#0.00")
Number without insignificant zeros and the $ sign:
=A2 & " " & TEXT(B2, "0.#")
Fractional number:
=A2 & " " & TEXT(B2, "# ?/???")
To concatenate text and percentage, the formulas are:
Percent with two decimal places:
=A12 & " " & TEXT(B12, "0.00%")
Rounded whole percent:
=A12 & " " & TEXT(B12, "0%")
How to concatenate a range of cells in Excel
Combining values from multiple cells might take some effort because the Excel CONCATENATE function does not accept arrays.
To concatenate several cells, say A1 to A4, you need to use one of the following formulas:
=CONCATENATE(A1, A2, A3, A4)
or
=A1 & A2 & A3 & A4
When combining a fairly small group of cells, it's no big deal to type all the references. A large range would be tedious to supply, typing each individual reference manually. Below you will find 3 methods of quick range concatenation in Excel.
Method 1. Press CTRL to select multiple cells
To quickly select several cells, you can press and hold the Ctrl key while clicking on each cell you want to include in the formula. Here are the detailed steps:
- Select a cell where you want to enter the formula.
- Type =CONCATENATE( in that cell or in the formula bar.
- Press and hold Ctrl and click on each cell you want to concatenate.
- Release the Ctrl button, type the closing parenthesis, and press Enter.
Method 2. Use TRANSPOSE function to get all cell values
When a range consists of tens or hundreds of cells, the previous method may not be fast enough as it requires clicking on each cell. In this case, you can use the TRANSPOSE function to return an array of values, and then merge them together in one fell swoop.
- In the cell where you want the result to appear, enter the TRANSPOSE formula, for example:
=TRANSPOSE(A1:A10)
- In the formula bar, press F9 to replace the formula with calculated values. As a result, you will have an array of values to be concatenated.
- Delete the curly braces surrounding the array.
- Type =CONCATENATE( before the first value, then type the closing parenthesis after the last value, and press Enter.
Note. The result of this formula is static as it concatenates the values, not cell references. If the source data changes, you will have to repeat the process.
Method 3. Use the CONCAT function
In Excel 365 and Excel 2021, this simple formula will concatenate a range of cells in a blink:
=CONCAT(A1:A10)
Method 4. Use the Merge Cells add-in
A quick and formula-free way to concatenate any range in Excel is to use the Merge Cells add-in with the "Merge all areas in selection" option turned off, as demonstrated in Combining values of several cells into one cell.
Excel "&" operator vs. CONCATENATE function
Many users wonder which is a more efficient way to join strings in Excel - CONCATENATE function or "&" operator.
The only real difference is the 255 strings limit of the CONCATENATE function and no such limitation when using the ampersand. Other than that, there is no difference between these two methods, nor is there any speed difference between the CONCATENATE and "&" formulas.
And since 255 is a really big number and you will hardly ever need to combine that many strings in real work, the difference boils down to comfort and ease of use. Some users find CONCATENATE formulas easier to read, I personally prefer using the "&" method. So, simply stick with the technique you feel more comfortable with.
Opposite of CONCATENATE in Excel (splitting cells)
The opposite of concatenate in Excel is splitting the contents of one cell into multiple cells. This can be done in a few different ways:
- Text to Columns feature
- Flash Fill option in Excel 2013 and higher
- TEXTSPLIT function in Excel 365
- Custom formulas to split cells (MID, RIGHT, LEFT, etc.)
You can also find useful information in this article: How to unmerge cells in Excel.
Concatenate in Excel with Merge Cells add-in
With the Merge Cells add-in included in Ultimate Suite for Excel, you can efficiently do both:
- Merge several cells into one without losing data.
- Concatenate the values of several cells into a single cell and separate them with any delimiter of your choosing.
The Merge Cells tool works with all Excel versions from 2016 to 365 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.
Combine values of several cells into one cell
To combine the contents of several cells, you select the range to concatenate and configure the following settings:
- Under What to merge, select Cells into one.
- Under Combine with, type the delimiter (a comma and a space in our case).
- Choose where you want to place the result.
- Most importantly, uncheck the Merge all areas in the selection box. It is this option that controls whether the cells are merged or their values are concatenated.
Combine columns row-by-row
To concatenate two or more columns, you configure the Merge Cells' settings in a similar way but choose to merge columns into one and place the results in the left column.
Join rows column-by-column
To combine data in each individual row, column-by-column, you choose:
- Merge rows into one.
- Use a line break for the delimiter.
- Place the results in the top row.
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 download a fully functional trial version of our Ultimate Suite for Excel below.
That's how to concatenate in Excel. I thank you for reading and hope to see you on our blog next week!
Available downloads
Concatenation formula examples (.xlsx file)
Ultimate Suite 14-day trial version (.exe file)
447 comments
Hi,
I have list of products A to F. If i applied the slicer product A & product B, the table will get filtered with all the records which are having product A & B. However, i need only value of product A & product B and it should be updated with the separation (semicolon).
I have tried =CONCATENATE(A1,";",A2,";",A3,";",A4,";",A5,";",A6,";",A7,";",A8,";",A9,";",A10) but here unable to check the unique value and its not pulling the filtered columns. Instead all the products from A1 to A10 its getting updated, while only Cell A2, A4 are having product A and A8,A9 are having product B.
Could you please guide on how to achieve this.. Thank you once again..
In "Column A" I have a Concatenated Value of "Column B"|"Column C"
In "Column B" I have a list of Names
In "Column C" I have a list of Sites
I want to able to search on the concatenated value but Excel isn't able to find the result when I try to copy & paste...
Ex:
| A | B | C |
1 |Martin|Montreal |Martin |Montreal |
2 |Jayme|Jamaica |Jayme |Jamaica |
So if I do CTRL+F and search for "Martin|Montreal" Excel doesn't find it.
I have tried the concatenate function: CONCAT(A1,"|",B1)
I have tried simply concatenating the text: (A1,"|",B1)
I have tried TEXTJOIN("|",FALSE,A1,A2)
All with the same result, if I search for the string in question or do lookups on the value, it cannot find it?
Does anyone have any tips on how to concatenate values and be able to use them in VLOOKUP or other lookup functions?
Sorry it didn't display to good but values are as such:
Column A: Formula concatenating the strings in column A and B with a "|" separator
Column B: Martin, Jayme
Column C: Montreal, Jamaica
Hello -
After I complete a concatenation I would like to delete the source data without affecting the resulting text string. How do I do this?
Hello Neli,
Thank you for this good question!
Just replace your concatenate formulas with their values. For this, use Excel's "Paste special - values only" feature. The detailed steps can be found in How to replace formulas with their values in Excel. I've added this tip to the tutorial for others to know.
Thanks very much for tutorials, I like to know if there is a way to make just a cell behave as a normal calculator.
i.e this cell should be capable of summing figures that appears in another cell, while keeping last cumulative figure visible.
This other cell will be the key-in cell or active cell.
Example:
Cell 1: =2*5, Answer appears in Cell 2,
Cell 1: =3*6.8, Answer is added to the previous value resulting from (2*5) and still appears in cell 2.
Dear,
I have 2 thing in a one cell of excel,"Words and numeric" how can i separate numeric and words in other 2 cells of excel,
Use the Split to Columns feature in the data tools. Here's an explanation: https://support.office.com/en-us/article/split-a-cell-f1804d0c-e180-4ed0-a2ae-973a0b7c6a23
Please help me with a formula to return value(phone number)(with phone number format)from merged cells in another worksheet.
IF($A$3="","",CONCATENATE('Work Order'!R4,'Work Order'!S4))
Thank You!
Please help for for number to words format using trim (concatenate)
Ex. 10,000.00 will convert to words is
*Ten thousand pesos only*
10,000.50
*Ten thousand pesos and 50/100 only*
Thanks in advance!
hi i have two columns with different value , need answer as shown
having
a 3
a 4
a 5
b 2
b 1
c 3
C 3
Need Answer like :
A 3,4,5
B 2,1
C 3,3
Hi All,
I have doubt in & function.
Plz solve the issue.
Eg : Invoice No. 8951 in A1 , Invoice date 20-03-2019 in A2 , \ in A3
If i use & function in Excel, its shows 8951\43544
my expectation is 8951\20-03-2019
Is possible in Excel ?
Plz revert
Im so stumped to what this (below) indicates?
"="&
the formula it is used in is shown below.
=SUMIF(logTable[Date],"="&D16,logTable[Amount])
My question is, can i just eliminate the ("="&), i am receiving the same output without it? What does it indicate? If you need more information, i can provide.
I apologize for the bluntness, thank-you so much for the opportunity to ask the question. This site so informative and helpful in every way. Excel is so challenging but, with your help, it is definitely manageable!
How to concatenate specific words by excluding some specific words in excel. For e.g. If there are words like : A, B, C, FALSE, D. So how can i concatenate these to get the result as A_B_C_D
could you please let me know how to get 300 number of rows data into one cell?
i want to single cell value into multi cell
I am trying to add +10 in a cell without adding 10 days to it. I need it to show +10:00. Any suggestions how I would do this?
2019-08-04T02:30:00
to
2019-07-25T02:30:00+10:00
How can I concatenate a sum of different sheet tab?
Hi Rhona,
Simply, make a reference to another sheet, and then concatenate it like this:
="Sum of Sheet1 "&SUM(Sheet1!A1:A10)
For more information, please see How to refer to another sheet in Excel.
cell a1 contains the value: 1992 - 1996
cell b1 contains the formula: =CONCATENATE("=",A1)
cell b1 displays: =1992 - 1996
What I want is for cell b1 to now be treated as a formula and compute and show the value: -4
Can that be done?
I know there is a way to set a fixed cell for concatenation when combining multiple rows and columns of data. I have seen it done, but I can't remember how, and I can't find any examples.
Here is an example of what I would like to do:
Column A is the concatenated value
Column B is a series of Levels starting in Row 2. Level 1, Level 2, Level 3 etc.
Column C Row 2 has the word MECH
Column D Row 2 has the word PLAN
In the end I want Column A to show "Level 1 MECH PLAN" in Row 2, "Level 2 MECH PLAN" in Row 3, etc. How do you write the concatenation formula so that no matter what row it is in, it calls for Column C Row 2 and Column D Row 2, while calling for Column B whatever the current row is.
Hope this is clear.... Thanks!
Hi,
I'm trying to automate something wherein I need to display upper case characters, as in abbreviations or acronyms to be displayed as upper case characters, separated by space.
For examples, if I enter "IRR" it should display "I R R" in next cell.
Your help would be greatly appreciated.
Thank you.
I really need some help i would like to take several dates MM/DD/YY that are like E2,F2,G2,H2 and so on and have them look like this 01/01/19, 01/02/19, 01/03/19, 01/04/19 is there a way i can do that ??? please help if you can
I want to concatenate column cells from 1 to 5 in such a way that it should neglect the same row cell value. Please refer the following table here data1 to data5 are 5 cells of a column and in front of the cell is the required result of concatenation.
data1 data2 data3 data4 data5
data2 data1 data3 data4 data5
data3 data1 data2 data4 data5
data4 data1 data2 data3 data5
data5 data1 data2 data3 data4
I have a cell (B2). cell value is: SAHANSRA,NAVJOT This is Lastname,Firstname
I am using: LEFT(B2,FIND(",",B2)-1) and MID(B2,FIND(",",B2)+1,10) respectively to pull the name apart and place them into separate cells.
What I need to do is place the LASTNAME into a static array with spaces to fill for 30 characters total. The results of the Lastname formula is now in cell N25
REPLACE(N25,(LEN(N25)+1),(30-(LEN(N25)))," ")
I need the result of the last formula to look like "SAHANSRAbbbbbbbbbbbbbbbbbbbbbb"
where "b" is a space (22 of them) I thought this would give me my 22 spaces, but it only gives me 1.
HELP!! thank you in advance.
hi, how i can use concatenate with condition?
for example i have 2 columns A & B and the condition is if we have same number in column B with different name in column A, and i need to add them in same cell (C).
do we have i formula?
A B C
elie 1 elie,Rita
Rita 1 elie,Rita
Joseph 2 Joseph,Noha
Noha 2 Joseph,Noha
I have a question with what I am finding is a difficult if/then situation.
Say I have a column with 3 separate values over hundreds of rows: AA BB or CC
AA is unique but BB and CC ultimately will be the same.
I need to concatenate 3 cells based off of the above breakdown.
The first part will be DEF: (with the colon) which is common for all of the outputs.
The next part will be either GHI:: or JKL:: depending on AA, BB or CC with JKL:: being associated with BB & CC designations.
Then the last part is a unique number that will be on its own ######.
The end result will need to be DEF:GHI::###### (AA value) or DEF:JKL::###### (BB or CC value) all depending on the values AA BB CC.
Keep hitting a wall with figuring out the IF AA then GHI:: portion.
Thanks,
Mike
How do I format after using concatentate using a formula for the two values?
For example: =concatenate((d3/d4)," / " (d5/d4)) gives values like:
1.425212521521 / 1.4526265654
But, I only want these values to be 3 numbers after the decimal. Is this possible if the returned value is a text string?
Hello I want to use concatenate function
0000 1 /15-16
I want 00001/15-16
I am not getting
Set Number Format to General.
=CONCATENATE(A1,B1,C1)
Regards,
Taimoor
Also Set Number format for your; 0000 to Text.
Regards,
Taimoor
Hi there, I've been trying to combine these into one cell without losing the zeros infront of columns C & D but have failed. Can you please help?
A1 B1 c1 d1
P HHL 0007040 0114876823
Thank you!
1 A Banana Closed
2 B Apple Closed
3 B Banana
4 A Apple Closed
5 A Apple Closed
Dear Friend, Kindly help me out in above i want a formula in which excel itself concatenate values of column 1 in which all other values are same, like i want answer in one cell like (4,5) , because its other column values A Apple Closed are same.
how to concatenate different characters within a cell???
How can I combine values from different cells in one column?
Eg.
A B C D
20 50 80 A = 20, B = 50, C = 80
How do one sum up a value like this 75+17+46+05+28 already in a single cell.
you find a lot of value like this in a single excel cell, how do one add it up 83+24+32+79+74
53+21+59+82+65
02+54+33+84+16
86+22+59+34+04
57+03+27+39+54
Just add a + sign at the beginning
Hi,
I want to limit the content of a cell to the following format:
XX YY 00-ZZZZ-EDWW
How can i do it using Data Validation or any other way?
thanks,
I've used the Concat function and joined three cells successfully. Now, how can I cut and paste the "merged" cells into a word document?
Hi Barbara,
In Excel, select the cell with your CONCAT formula, and press Ctrl+C to copy it. Switch to your Word document, place the mouse pointer to where you want the merged text to appear and press Ctrl+V to paste it.
Hi,
I had a Excel sheet which has many columns . Let say A1,D1 and G1 are has to be concatenated.
A1 has value 134574935
D1 has date in 03/05/2018
G1 has date in 05/05/2018
I want result as
insert into tablename values('134564935','03-May-2018','05-May-2018');
Note:- date format has changed and the delimeter in the format has also changed.
Please help me to solve this . Thanks in advance .
I'm trying to concatenate two columns of data. One contains area codes for phone numbers, and the second column contains the numbers themselves. The problem is that when the phone number begins with a zero, this isn't included in the final concatenated value, resulting in nonviable phone numbers. How can I go about fixing this?
Thanks
Hanelise:
If you want to keep the leading zeros, you just need to format the cells as Text before entering the data. This should be OK for you because when you concatenate the cells they will go to text anyway.
Hello, Hanelise,
If we understand your task correctly, please have a look at our Merge Cells Wizard. It allows you to combine several cells into one without loosing symbols
Thank You - Wonderful article - its exactly what i wanted.
Hi,
I need to concatenate a few cells but A2 it's a number 08 and I need the zero in front, but for some reason it's only showing the number 8 alone, same with all the single digits like 4 it should be 04. For the 2018 I need only the 18 but it's giving me the complete year.
8_4_2018_
=CONCATENATE(A3,"_",B3,"_",C3,"_",S3,"",Z3,"_",K3,"_")
Correct way should be:
08_04_18 It's the date but in this format.
Thanks
Is there a quick way to build a formula:
=concatenate(a1,a2,a3,a4 .... a1024)
or
=concatenate(a1,b1,c1,d1, ... amj1)
without typing the addresses one by one ?
Please note, that the cells a1..a1024, or a1..amj1, contain results of other formulas, so their content varies, and the TRANSPOSE trick seems not to work :-(
BTW, most of the above internal results will be just empty strings, and the rest will be just one or two letters, so the actual result of the above concatenate will be only 100-200 characters.
Bests,
Mike
What is my text has a "READY TO LET" text, and I like to join text and formulas like :
="INFLATION TO [READY TO LET YEAR] @ 4% ("&I64&" years)", I get this:
INFLATION TO [READY TO LET YEAR] @ 4% (4 years), but I need this:
INFLATION TO "READY TO LET YEAR" @ 4% (4 years)
Would you please let me know how to write this formula?
Please advise,
Hi there,
How to concatenate two columns that mimic this (N'Doe, John', N'Doctor') where Doe, John is the first column and Doctor is the second column. This (N'Doe, John', N'Doctor') has to be used in SQL and XML. Thanks
Thanks. This is what I really wanted
Hi
Hello Sir/Madam,
plz solve my problem that how to write many dates in a cell in excel sheet since a have a range of dates for example here Mr. Ram has taken 6 spells leave in a month as
SN NAME DAYS FROM DATE TO DATE
1. Mr.Ram 5 07/05/2018 11/05/2018
2 18/05/2018 19/05/2018
3 21/05/2018 23/05/2018
2 25/05/2018 26/05/2018
2 28/05/2018 29/05/2018
1 31/05/2018 blank
2. Mr.Paul 1 02/05/2018
3 05/05/2018 07/05/2018
2 11/05/2018 12/05/2018
1 15/05/2018
3. Mr.Mac 3 18/05/2018 20/05/2018
3 26/05/2018 28/05/2018
4. Mr.Bond 7 23/05/2018 29/05/2018
sir/madam,
i want to write all DAYS in a cell like above and all FROM DATE in a cell like above and also TO DATE in a cell like above.
sir i want that if there is only two spells of leave of an employee there shows only two lines in cell and if there is three spells of leave of an employee then there shows only three lines in cell AND if there is only on day of leave then shows in only from date cell and to date will blank as shown in 6th spell as 1 day 31/05/2018.
please HELP ME SIR/MADAM
NL01AB1895
i just want above result as per below give.
1895_NL_01_AB
Also, i want a particulars word search in a column in excel.
So, Please guide us.
hi
i have number of say 100 links in which i need to edit 4 letters
eg: http://www.google.com/node12346 (is source)
http://www.google.com/in-en/node12346 (as result)
how do i do it using concatenate formula
Hi Drishti,
I'd simply use Excel's Replace All feature:
1. Press the Ctrl + H to open the Replace tab of the Find and Replace dialog.
2. Type /node in the "Find what" box.
3. Type /in-en/node in the "Replace with" box.
4. Hit "Replace All".
Done.
How to do?
32
12
32
32
32
92
36
192
96
36
24
32
32
32
100
32
32
384
32
32
to this
32,12,32,32,32,92,36,192,96,36,24,32,32,32,100,32,32,384,32,32
(in one shot without using one by one concatenation) .
Manisha:
I use the Concatenate Transpose method on the infrequent occasions I have done this. I decided to look for other methods to answer your question and came across this excellent article on five different methods to accomplish your task. Take a look at the article and I know you will find a method that best suits your situation.
https://excelchamps.com/blog/concatenate-a-range-of-cells/
I am trying to reference other cells in excel that have formulas for an API. The following formula works: =RTD($B$1,,"srpt//OPT/20180629/p/137/USD", "Bid")
But when I replace certain parts with referencing, it does not work:
=RTD($B$1,,"B4//opt/$H$2/p/G4/usd","bid")
How do I fix this?
Kind Regards,
Liviu
It's very usefull. Thanks !
All the things very nice....I were looking for concatenate function with carriage return and my luck & pleasure that I visited this page :)
Got a very nice and easy solution.
Thank you.
hi svetlana will you assist me to make letter lower case to uppercase formula for example I want" formula" text " rmul only to uppercase mean ruml lowercase to upper case RUML thank you
Paban:
Where the original text is in A1
Enter =UPPER(A1) in an empty cell.
The function has an expanded explaination in the article above.
I have a large data that are over 13K rows, I want to combine all of them into one cell. I know you can only have 8192 characters in an Microsoft Excel cell. I want to know if anyone know how to create a VBA macro or better way to have a formula that can do the job. Right now each cell has 9 characters in each cell so I am combining about 3200 cell at once, but I have to do this over and over again until i finish all my 13K records. I need to separate them by comma (,).
For example: 123456789,123456789,123456789,123456789
That is how I want it but I know I could only do 3200 records at a time.
My original records looks like this:
123456789
123456789
123456789