Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi members, This is my macro for copying a range named "rpp" to a new word doc generated in c:\autogenr.doc. My input is: col: C 1001 1002 1003 1004 1005 1006 1007 `my output in word has to be: 1001,1002,1003,1004,1005,1006,1007 etc..till the end Below macro will copy the entire range as it is (as table) from excel to doc. Sub cmdcopytoword_Click() 'copy sheet to clipboard Range("rpp").Select Selection.Copy Range("B3").Select ' open Word Dim appWD As Object Set appWD = CreateObject("Word.Application") appWD.Visible = True 'open a new document in Word appWD.Documents.Add DocumentType:=wdNewBlankDocument ' paste from clipboard appWD.Selection.Paste With appWD.ActiveDocument ..SaveAs "C:\autogenr.doc" ..Close End With But wha i require is not the entire range a table.but the contents of single column with coma separated in word. Please provide some inputs. Regsrds, Roshin ![]() -- roshinpp_77 ------------------------------------------------------------------------ roshinpp_77's Profile: http://www.excelforum.com/member.php...o&userid=34924 View this thread: http://www.excelforum.com/showthread...hreadid=562337 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
what should happen after the coma (,) feature is applied in excel | Excel Discussion (Misc queries) | |||
How can I filter just 2 columns (separated by another column)? | Excel Worksheet Functions | |||
transforming excel cell contents in word document, with coma separated. | Excel Programming | |||
Column with semicolon-separated values | Excel Programming | |||
Going from column to comma separated list... | Excel Discussion (Misc queries) |