Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim oUsedRange as Excel.Range
Dim oRange as Excel.Range oUsedRange = WorkSheets("Employees").UsedRange For each oRange in oUsedRange <-- Blows up here with member not found Next P.S. I'm using VB.NET so there is no SET statement Many Thanks in Advance |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jon,
Your code should work as written. Try appending Cells to your oUsedRange variable. E.g., For each oRange in oUsedRange.Cells -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jon Turner" wrote in message ... Dim oUsedRange as Excel.Range Dim oRange as Excel.Range oUsedRange = WorkSheets("Employees").UsedRange For each oRange in oUsedRange <-- Blows up here with member not found Next P.S. I'm using VB.NET so there is no SET statement Many Thanks in Advance |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jon, Chip..
the crucial mistake is forgetting SET SET oUsedRange = WorkSheets("Employees").UsedRange keepITcool < email : keepitcool chello nl (with @ and .) < homepage: http://members.chello.nl/keepitcool "Chip Pearson" wrote: Jon, Your code should work as written. Try appending Cells to your oUsedRange variable. E.g., For each oRange in oUsedRange.Cells |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
As the original poster indicated, he is writing in VB.NET, which
has no Set statement. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "keepITcool" wrote in message ... Jon, Chip.. the crucial mistake is forgetting SET SET oUsedRange = WorkSheets("Employees").UsedRange keepITcool < email : keepitcool chello nl (with @ and .) < homepage: http://members.chello.nl/keepitcool "Chip Pearson" wrote: Jon, Your code should work as written. Try appending Cells to your oUsedRange variable. E.g., For each oRange in oUsedRange.Cells |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I appended Cells but still does the same. Any other suggestions ? TIA
UsedRange = WorkSheets("Employees").UsedRange For each oRange in oUsedRange.Cells <-- Blows up here with member not found Next "Chip Pearson" wrote in message ... Jon, Your code should work as written. Try appending Cells to your oUsedRange variable. E.g., For each oRange in oUsedRange.Cells -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jon Turner" wrote in message ... Dim oUsedRange as Excel.Range Dim oRange as Excel.Range oUsedRange = WorkSheets("Employees").UsedRange For each oRange in oUsedRange <-- Blows up here with member not found Next P.S. I'm using VB.NET so there is no SET statement Many Thanks in Advance |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You don't use Set in VB.NET
"keepITcool" wrote in message ... Jon, Chip.. the crucial mistake is forgetting SET SET oUsedRange = WorkSheets("Employees").UsedRange keepITcool < email : keepitcool chello nl (with @ and .) < homepage: http://members.chello.nl/keepitcool "Chip Pearson" wrote: Jon, Your code should work as written. Try appending Cells to your oUsedRange variable. E.g., For each oRange in oUsedRange.Cells |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Programmer Error. Problem fixed.
How do I go about querying an individual cell in the WorkSheet.Range.Cells collection ? I want to find out each cell's value and column name. TIA "Jon Turner" wrote in message ... I appended Cells but still does the same. Any other suggestions ? TIA UsedRange = WorkSheets("Employees").UsedRange For each oRange in oUsedRange.Cells <-- Blows up here with member not found Next "Chip Pearson" wrote in message ... Jon, Your code should work as written. Try appending Cells to your oUsedRange variable. E.g., For each oRange in oUsedRange.Cells -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jon Turner" wrote in message ... Dim oUsedRange as Excel.Range Dim oRange as Excel.Range oUsedRange = WorkSheets("Employees").UsedRange For each oRange in oUsedRange <-- Blows up here with member not found Next P.S. I'm using VB.NET so there is no SET statement Many Thanks in Advance |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
oRange.Value
oRange.column Not sure what a column Name is, but using integers has always been sufficient for me. -- Regards, Tom Ogilvy "Jon Turner" wrote in message ... Programmer Error. Problem fixed. How do I go about querying an individual cell in the WorkSheet.Range.Cells collection ? I want to find out each cell's value and column name. TIA "Jon Turner" wrote in message ... I appended Cells but still does the same. Any other suggestions ? TIA UsedRange = WorkSheets("Employees").UsedRange For each oRange in oUsedRange.Cells <-- Blows up here with member not found Next "Chip Pearson" wrote in message ... Jon, Your code should work as written. Try appending Cells to your oUsedRange variable. E.g., For each oRange in oUsedRange.Cells -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jon Turner" wrote in message ... Dim oUsedRange as Excel.Range Dim oRange as Excel.Range oUsedRange = WorkSheets("Employees").UsedRange For each oRange in oUsedRange <-- Blows up here with member not found Next P.S. I'm using VB.NET so there is no SET statement Many Thanks in Advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
saving a big spreadsheet in chunks | Excel Discussion (Misc queries) | |||
Search and replace chunks of html code | Excel Discussion (Misc queries) |