M
Marc Miller
This is my first attempt working with Excel from vb.net. Whew!
I'm trying to get the column letter so that I can create a range variable.
1. I am looping thru the sheets using :
for i = 1 to objExcel.Sheets.Count()
2. Then I want to loop thru the columns using:
for iCol = 1 to objExcel.activesheet.columns.count()
This is where I need the range variable so that I can issue something like:
objExcel.Range(cRange).Select()
Does anyone understand this? I'm probably not being clear enough,
but if you do understand this, can you help?
My project is to loop thru all cells in a workbook to find links to servers.
We are
migrating from Novell to MSFT and our server names are going change and I
need
to update our corp.'s spreadsheets.
Thanks Mucho!
Marc Miller
I'm trying to get the column letter so that I can create a range variable.
1. I am looping thru the sheets using :
for i = 1 to objExcel.Sheets.Count()
2. Then I want to loop thru the columns using:
for iCol = 1 to objExcel.activesheet.columns.count()
This is where I need the range variable so that I can issue something like:
objExcel.Range(cRange).Select()
Does anyone understand this? I'm probably not being clear enough,
but if you do understand this, can you help?
My project is to loop thru all cells in a workbook to find links to servers.
We are
migrating from Novell to MSFT and our server names are going change and I
need
to update our corp.'s spreadsheets.
Thanks Mucho!
Marc Miller