Thread Rating:
  • 1 Vote(s) - 1 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to insert value in notepad from excel
#2
Not Solved
Hi
1. In excel sheet whenever we run the script only one value should be present with the updated value.
For this you can just say:
' here update i (loop) as you want
Code:
Set objExcel=CreateObject("Excel.Application")
Set objBook=objExcel.WorkBooks.Open(("C:\path\filename1.xls")
Set objSheet=objExcel.Sheets("SheetName1")
For j= 1 To 3
objSheet.Cells(i,j).value="value"
Next
2. In notepad for each run of the script there should be separate line of values present (ie for example if we had run the script for 3 times there should be three lines in notepad)
Code:
Set fso=CreateObject("Scripting.FileSystemObject")
Set filename=fso.OpenTextFile("C:\path\filename1.txt",8,True)
'write the text here
filename.WriteLine "updating the text file"
3. 3rd point is not clear for me.
Reply


Messages In This Thread
RE: how to insert value in notepad from excel - by KavitaPriyaCR - 11-08-2010, 05:16 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Fifth word from every thousand line in notepad files. sallu.iet@gmail.com 0 850 01-17-2020, 09:58 AM
Last Post: sallu.iet@gmail.com
  Unable to insert data into datatable Prashanth 1 3,473 05-10-2013, 03:07 PM
Last Post: Saket
  insert call to new action bistritapcv 1 2,465 04-06-2013, 12:09 PM
Last Post: ravi.gajul
  how to insert error msg in a datatable using Dp? zakshah.12 0 1,888 03-05-2013, 07:49 AM
Last Post: zakshah.12
  Copy Data from Notepad jegansurya 3 6,428 07-04-2012, 05:31 PM
Last Post: Shridevi.Salagare

Forum Jump:


Users browsing this thread: 1 Guest(s)