Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
VB
Dim objExcelApp,i
Set objExcelApp = CreateObject("Excel.Application")
objExcelApp.Workbooks.Open "C:\Logs\dataok"
i=1
While i<15
objExcelApp.Cells(i, 3).Value = SmartTags("val 1")	
i=i+1
Wend
objExcelApp.ActiveWorkbook.Save
objExcelApp.Workbooks.Close
objExcelApp.Quit
Set objExcelApp = Nothing
Posted
Updated 6-Jan-15 17:51pm
v3
Comments
PIEBALDconsult 6-Jan-15 23:48pm    
You could use Improve question to add that to the question.
Member 11357392 7-Jan-15 0:04am    
ok.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900