Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I working with a spreadsheet containing 18 cloumns of fill-in information,
ranging from basic text to general numbers and dates. I want to merge all the information in those 18 cells, for each row, and/or save it as a word document. |
#2
![]() |
|||
|
|||
![]()
You could just build a giant formula that concatenates those 18 cells:
=a1&b1&c1&...&q1&r1 But since you have numbers, dates, times, you'd want to format those to make them look nice: =text(a1,"mm/dd/yyyy")& " " & b1 & " " & text(c1,"hh:mm") & " " & text(d1,"$0.00") & " " & ..... & r1 And if you want to force new lines within that giant formula: =text(a1,"mm/dd/yyyy")& char(10) & b1 & " " & text(c1,"hh:mm") & " " & text(d1,"$0.00") & char(10) & ..... & r1 (remember to format the cell as wrap text) Once you build that formula, then you could just copy down the column. And never throw it away! Donna wrote: I working with a spreadsheet containing 18 cloumns of fill-in information, ranging from basic text to general numbers and dates. I want to merge all the information in those 18 cells, for each row, and/or save it as a word document. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
cannot open excel file, please help!!! | Excel Discussion (Misc queries) | |||
Excel updating from XML file - file path specific? | Excel Discussion (Misc queries) | |||
Excel macro that opens new MS Word file and pastes data as a pictu | Excel Worksheet Functions | |||
exporting excel worksheet to word | Links and Linking in Excel | |||
Locating a file in excel with a partial file name. | Excel Discussion (Misc queries) |