Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() this macro will open an html, copy each line into the A1 cell. - modif this to include your other html files Sub gethtml() fn = "c:\test.htm" Open fn For Input As #1 Do While Not EOF(1) Line Input #1, a Cells(1, 1).Value = Cells(1, 1).Value + Chr$(13) + a Loop Close #1 End Su ----------------------------------------------- ~~ Message posted from http://www.ExcelTip.com ~~View and post usenet messages directly from http://www.ExcelForum.com ~~Now Available: Financial Statements.xls, a step by step guide to creating financial statements |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Importing multiple lines into Excel from txt. | Excel Worksheet Functions | |||
How to split wrapped text in a single cell into multiple lines | Excel Discussion (Misc queries) | |||
Importing multiple forms into a single Excel list | Excel Discussion (Misc queries) | |||
two lines of text in a single row? | Excel Discussion (Misc queries) | |||
two lines of text in single row | Excel Discussion (Misc queries) |