Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a names and address file that has house numbers and street names in
separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
It sounds like your formula has absolute references and needs relative
references. Absolute references are shown by dollar signs before the column and/or row references within the formula. Remove the dollar signs and try filling down again. Hope this helps, Hutch "Harry Hornet" wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sounds like you created the formula in a cell that was formatted to text.
Select the column of "bad" formulas, then, from the Menu Bar, Just open and close TTC, <Data <TextToColumns <Finish This gives you working formulas. While they're still selected, format them to General if you wish. -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! ---------------------------------------------------------------------------. "Harry Hornet" wrote in message ... I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Sep 12, 7:12*am, Harry Hornet
wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. Also sounds like your Calculation mode is not set on Automatic. Try Tools|Options|Calculation Tab then click on Automatic option. Ken Johnson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Brilliant, Thanks for your help.
"Ken Johnson" wrote: On Sep 12, 7:12 am, Harry Hornet wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. Also sounds like your Calculation mode is not set on Automatic. Try Tools|Options|Calculation Tab then click on Automatic option. Ken Johnson |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Harry, I want to do that too! What is your formula please?
-- Mary-Anne in Durban "Harry Hornet" wrote: Brilliant, Thanks for your help. "Ken Johnson" wrote: On Sep 12, 7:12 am, Harry Hornet wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. Also sounds like your Calculation mode is not set on Automatic. Try Tools|Options|Calculation Tab then click on Automatic option. Ken Johnson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=A1 & " " & B1 & " " & C1 & " " & D1
Select the four cells and drag/copy down. Gord Dibben MS Excel MVP On Fri, 12 Sep 2008 06:09:02 -0700, Mary-Anne wrote: Hi Harry, I want to do that too! What is your formula please? |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Mary-Anne
relise you never got a reply to this and was huntingfor the same resolution found one formula = =CONCATENATE(A1,B1,C1) etc FOR ROWS or =CONCATENATE(A1,A2,A3) ets FOR COLUMN OR ENTER RANDOM CELL NUMBER AT YOUR LEISURE "Mary-Anne" wrote: Hi Harry, I want to do that too! What is your formula please? -- Mary-Anne in Durban "Harry Hornet" wrote: Brilliant, Thanks for your help. "Ken Johnson" wrote: On Sep 12, 7:12 am, Harry Hornet wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. Also sounds like your Calculation mode is not set on Automatic. Try Tools|Options|Calculation Tab then click on Automatic option. Ken Johnson |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you all. It works like a charm. One small problem. If I search for
an item in that concatenated cell, I find that Excel cannot find that item. eg if the word french is in the cell and I search fro french in the worksheet it does not go to that cell at all. I wonder why? -- Mary-Anne in Durban "EngelseBoer" wrote: Hi Mary-Anne relise you never got a reply to this and was huntingfor the same resolution found one formula = =CONCATENATE(A1,B1,C1) etc FOR ROWS or =CONCATENATE(A1,A2,A3) ets FOR COLUMN OR ENTER RANDOM CELL NUMBER AT YOUR LEISURE "Mary-Anne" wrote: Hi Harry, I want to do that too! What is your formula please? -- Mary-Anne in Durban "Harry Hornet" wrote: Brilliant, Thanks for your help. "Ken Johnson" wrote: On Sep 12, 7:12 am, Harry Hornet wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. Also sounds like your Calculation mode is not set on Automatic. Try Tools|Options|Calculation Tab then click on Automatic option. Ken Johnson |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
that is because the cells true value is an equation
when i use these functions, i have to copy all and paste to a new book as "values" then all these entities are findable "Mary-Anne" wrote: Thank you all. It works like a charm. One small problem. If I search for an item in that concatenated cell, I find that Excel cannot find that item. eg if the word french is in the cell and I search fro french in the worksheet it does not go to that cell at all. I wonder why? -- Mary-Anne in Durban "EngelseBoer" wrote: Hi Mary-Anne relise you never got a reply to this and was huntingfor the same resolution found one formula = =CONCATENATE(A1,B1,C1) etc FOR ROWS or =CONCATENATE(A1,A2,A3) ets FOR COLUMN OR ENTER RANDOM CELL NUMBER AT YOUR LEISURE "Mary-Anne" wrote: Hi Harry, I want to do that too! What is your formula please? -- Mary-Anne in Durban "Harry Hornet" wrote: Brilliant, Thanks for your help. "Ken Johnson" wrote: On Sep 12, 7:12 am, Harry Hornet wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. Also sounds like your Calculation mode is not set on Automatic. Try Tools|Options|Calculation Tab then click on Automatic option. Ken Johnson |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
you could just do similar in the same work book - sheet - cell - column - row
-- or what ever pleases you -- ie copy and paste special "values" all depends on your needs for me i need the math so work in 2 workbooks one with the calculations one as values (see my previous response) "Mary-Anne" wrote: Thank you all. It works like a charm. One small problem. If I search for an item in that concatenated cell, I find that Excel cannot find that item. eg if the word french is in the cell and I search fro french in the worksheet it does not go to that cell at all. I wonder why? -- Mary-Anne in Durban "EngelseBoer" wrote: Hi Mary-Anne relise you never got a reply to this and was huntingfor the same resolution found one formula = =CONCATENATE(A1,B1,C1) etc FOR ROWS or =CONCATENATE(A1,A2,A3) ets FOR COLUMN OR ENTER RANDOM CELL NUMBER AT YOUR LEISURE "Mary-Anne" wrote: Hi Harry, I want to do that too! What is your formula please? -- Mary-Anne in Durban "Harry Hornet" wrote: Brilliant, Thanks for your help. "Ken Johnson" wrote: On Sep 12, 7:12 am, Harry Hornet wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. Also sounds like your Calculation mode is not set on Automatic. Try Tools|Options|Calculation Tab then click on Automatic option. Ken Johnson |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you! That is very helpful. Works well.
-- Mary-Anne in Durban "EngelseBoer" wrote: you could just do similar in the same work book - sheet - cell - column - row -- or what ever pleases you -- ie copy and paste special "values" all depends on your needs for me i need the math so work in 2 workbooks one with the calculations one as values (see my previous response) "Mary-Anne" wrote: Thank you all. It works like a charm. One small problem. If I search for an item in that concatenated cell, I find that Excel cannot find that item. eg if the word french is in the cell and I search fro french in the worksheet it does not go to that cell at all. I wonder why? -- Mary-Anne in Durban "EngelseBoer" wrote: Hi Mary-Anne relise you never got a reply to this and was huntingfor the same resolution found one formula = =CONCATENATE(A1,B1,C1) etc FOR ROWS or =CONCATENATE(A1,A2,A3) ets FOR COLUMN OR ENTER RANDOM CELL NUMBER AT YOUR LEISURE "Mary-Anne" wrote: Hi Harry, I want to do that too! What is your formula please? -- Mary-Anne in Durban "Harry Hornet" wrote: Brilliant, Thanks for your help. "Ken Johnson" wrote: On Sep 12, 7:12 am, Harry Hornet wrote: I have a names and address file that has house numbers and street names in separate cells. I need to merge them so that they are in the same cell with a space between them. I have used CONCATENATE and I have had success with the first record. However when I try to use the fill handle to populate down the rest of the records, the same result is returned. The formula in the cell is correct and if I click on it then the function symbol, the correct result is then displayed. I am not sure if I have explained this very well but if someone can help I would be grateful. Also sounds like your Calculation mode is not set on Automatic. Try Tools|Options|Calculation Tab then click on Automatic option. Ken Johnson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
merging cells together but keeping all data from the cells | Excel Discussion (Misc queries) | |||
merging 3 cells into 1 | Excel Discussion (Misc queries) | |||
merging cells | New Users to Excel | |||
Merging cells | Excel Worksheet Functions | |||
Merging Cells | Excel Worksheet Functions |