home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > Applications and Operating Systems
Ask a Tech Support Question (free)!

Export excel --> html - How to clean html?

Reply
Get bargains at  »  Dealighted.com
 
Thread Tools Search this Thread
Currently Active Users: 2049
Discussions: 200,948, Posts: 2,379,410, Members: 246,309
Old June 8th, 2009, 04:56 AM     #21 (permalink)
Junior Member
 
Join Date: Jun 2009
Posts: 1
Clean export to html

Forget anything excel will do itself if you want a totally clean export create a macro and write a file yourself below is about as simply as i can get the code and the only tags you will have is table, table row and table cell plus closure tags you can use completly as is you just need to make sure there is a c:\temp folder otherwise just change path and filename to suit.

Sub export_To_HTML()
Dim HTML_Ouput
HTML_Output = HTML_Output & "<Table>" & vbCrLf

Open "C:\temp\MyFile.HTML" For Output As #1 'Simply name the file what you want
For HTML_Rows = 1 To ActiveCell.SpecialCells(xlLastCell).Row
HTML_Output = HTML_Output & "<TR>"
For HTML_Cols = 1 To ActiveCell.SpecialCells(xlLastCell).Column
HTML_Output = HTML_Output & "<td>" & Cells(HTML_Rows, HTML_Cols) & "</TD>"
Next
HTML_Output = HTML_Output & "</TR>" & vbCrLf
Next
HTML_Output = HTML_Output & "</Table>"
Print #1, HTML_Output
Close #1
End Sub
deanmhall is offline   Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Most Active Discussions
Making Health Care Worse (175)
Is It Just Me? (2938)
The disrespect of Obama by Russian .. (24)
Wireless Televisions. (12)
windows 7 problem (7)
CPU fan stops spinning randomly (8)
Regular Build (6)
Is the PSU I received dead? (12)
radeon x850xt platinum & shader.. (5)
Print spooler problem (15)
HIS HD5770 graphic card question (15)
windows vista security holes (9)
Install XP pro and a Vista laptop ?.. (11)
Dept. of HS: NSA 'Helped' Develop V.. (15)
Recent Discussions
For Sale BFG GTX285 OC2 with 10 year .. (3)
Point and Shoot Camera Suggestions. (3)
How to convert MP3's (4)
Wireless Televisions. (12)
Graphics Card Upgrade Question (3)
Laptop with wireless problem. (2)
Internet Lost (1)
Hp Artist Edition + Matching Bag (0)
My monitor won't turn on after instal.. (0)
Asus P4G8X Mobo (6)
radeon x850xt platinum & shader 3 (5)
Xbox 360 GTA: SA disk error (1)
Is the PSU I received dead? (12)
windows 7 internet problem (5)
Multiple Restarts Required at Boot (0)
BSOD On Startup (ntoskrnl.exe) (2)
Print spooler problem (15)
Have you switched yet? (86)
screen resolution vs monitor size (2)
sms storage to PC (0)
Regular Build (6)
Open With ..... Win7 (0)
java code for fibonacci (1)
[F@H SPAM 11/16/09] ! 1/2 months to r.. (35)
windows 7 problem (7)


All times are GMT -4. The time now is 09:57 PM.
TechIMO Copyright 2009 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28