Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 211
Default Finding A Number Existing Between A Specific Range?

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default Finding A Number Existing Between A Specific Range?

Hi Again

One way is to check the cell value and store the address in a string and
select at the end. There should be a much better way.

Sub Macro()
Dim strAddress As String, cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Value 100000000000# Then _
strAddress = strAddress & "," & cell.Address
Next
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

PS: You can modify the condition to suit

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default Finding A Number Existing Between A Specific Range?

Faraz, you can try using COUNTIF() in from to check whether any number
exits..Advantages are..

--you can avoid the looping if there are no numbers...
--you can Exit the loop once the count is reached.

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:J30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
Next
End If

If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Hi Again

One way is to check the cell value and store the address in a string and
select at the end. There should be a much better way.

Sub Macro()
Dim strAddress As String, cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Value 100000000000# Then _
strAddress = strAddress & "," & cell.Address
Next
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

PS: You can modify the condition to suit

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 211
Default Finding A Number Existing Between A Specific Range?

Thanx Jacob,

However, Error 1004, with
Range(Mid(strAddress, 2)).Select
highlighted is being faced.
--
Best Regards,

Faraz


"Jacob Skaria" wrote:

Faraz, you can try using COUNTIF() in from to check whether any number
exits..Advantages are..

--you can avoid the looping if there are no numbers...
--you can Exit the loop once the count is reached.

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:J30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
Next
End If

If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Hi Again

One way is to check the cell value and store the address in a string and
select at the end. There should be a much better way.

Sub Macro()
Dim strAddress As String, cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Value 100000000000# Then _
strAddress = strAddress & "," & cell.Address
Next
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

PS: You can modify the condition to suit

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default Finding A Number Existing Between A Specific Range?

I have tried the below with around 12 numbers satisfying the condition
scattered within the range..and found to be working fine...Just put a message
box to see what strAddress returns..

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next

End If
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

Thanx Jacob,

However, Error 1004, with
Range(Mid(strAddress, 2)).Select
highlighted is being faced.
--
Best Regards,

Faraz


"Jacob Skaria" wrote:

Faraz, you can try using COUNTIF() in from to check whether any number
exits..Advantages are..

--you can avoid the looping if there are no numbers...
--you can Exit the loop once the count is reached.

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:J30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
Next
End If

If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Hi Again

One way is to check the cell value and store the address in a string and
select at the end. There should be a much better way.

Sub Macro()
Dim strAddress As String, cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Value 100000000000# Then _
strAddress = strAddress & "," & cell.Address
Next
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

PS: You can modify the condition to suit

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default Finding A Number Existing Between A Specific Range?

Just one thing which I noticed is that the below line should be

For Each cell In rngTemp

'instead of
For Each cell In ActiveSheet.UsedRange


But i dont see any probs other than that...Try in the activesheet itself and
see

If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

I have tried the below with around 12 numbers satisfying the condition
scattered within the range..and found to be working fine...Just put a message
box to see what strAddress returns..

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next

End If
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

Thanx Jacob,

However, Error 1004, with
Range(Mid(strAddress, 2)).Select
highlighted is being faced.
--
Best Regards,

Faraz


"Jacob Skaria" wrote:

Faraz, you can try using COUNTIF() in from to check whether any number
exits..Advantages are..

--you can avoid the looping if there are no numbers...
--you can Exit the loop once the count is reached.

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:J30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
Next
End If

If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Hi Again

One way is to check the cell value and store the address in a string and
select at the end. There should be a much better way.

Sub Macro()
Dim strAddress As String, cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Value 100000000000# Then _
strAddress = strAddress & "," & cell.Address
Next
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

PS: You can modify the condition to suit

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 211
Default Finding A Number Existing Between A Specific Range?

The code:

Sub Mcr1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then
For Each cell In rngTemp
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next
End If
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

still results in a message:

Run-time error '1004':

Method 'Range' of object '_Global' failed

with the text:

Range(Mid(strAddress, 2)).Select

highlighted.
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Jacob Skaria" wrote:

Just one thing which I noticed is that the below line should be

For Each cell In rngTemp

'instead of
For Each cell In ActiveSheet.UsedRange


But i dont see any probs other than that...Try in the activesheet itself and
see

If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

I have tried the below with around 12 numbers satisfying the condition
scattered within the range..and found to be working fine...Just put a message
box to see what strAddress returns..

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next

End If
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

Thanx Jacob,

However, Error 1004, with
Range(Mid(strAddress, 2)).Select
highlighted is being faced.
--
Best Regards,

Faraz


"Jacob Skaria" wrote:

Faraz, you can try using COUNTIF() in from to check whether any number
exits..Advantages are..

--you can avoid the looping if there are no numbers...
--you can Exit the loop once the count is reached.

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:J30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
Next
End If

If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Hi Again

One way is to check the cell value and store the address in a string and
select at the end. There should be a much better way.

Sub Macro()
Dim strAddress As String, cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Value 100000000000# Then _
strAddress = strAddress & "," & cell.Address
Next
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

PS: You can modify the condition to suit

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 211
Default Finding A Number Existing Between A Specific Range?

I have just noticed that if the first few rows are FULL of numbers the code
fails. Any particular reason?
--
Best Regards,

Faraz


"Faraz A. Qureshi" wrote:

The code:

Sub Mcr1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then
For Each cell In rngTemp
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next
End If
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

still results in a message:

Run-time error '1004':

Method 'Range' of object '_Global' failed

with the text:

Range(Mid(strAddress, 2)).Select

highlighted.
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Jacob Skaria" wrote:

Just one thing which I noticed is that the below line should be

For Each cell In rngTemp

'instead of
For Each cell In ActiveSheet.UsedRange


But i dont see any probs other than that...Try in the activesheet itself and
see

If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

I have tried the below with around 12 numbers satisfying the condition
scattered within the range..and found to be working fine...Just put a message
box to see what strAddress returns..

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next

End If
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

Thanx Jacob,

However, Error 1004, with
Range(Mid(strAddress, 2)).Select
highlighted is being faced.
--
Best Regards,

Faraz


"Jacob Skaria" wrote:

Faraz, you can try using COUNTIF() in from to check whether any number
exits..Advantages are..

--you can avoid the looping if there are no numbers...
--you can Exit the loop once the count is reached.

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:J30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
Next
End If

If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Hi Again

One way is to check the cell value and store the address in a string and
select at the end. There should be a much better way.

Sub Macro()
Dim strAddress As String, cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Value 100000000000# Then _
strAddress = strAddress & "," & cell.Address
Next
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

PS: You can modify the condition to suit

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default Finding A Number Existing Between A Specific Range?

Works for me...Interesting..

--I have modified and referred the sheet and change .Select to .Activate.Try
the below..
--Does it work if you have only 2 or 3 number in the range?

Sub Mcr1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Sheets("Sheet1").Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then
For Each cell In rngTemp
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next
End If
rngTemp.Parent.Activate
If strAddress < "" Then Sheets("Sheet1").Range(Mid(strAddress, 2)).Activate
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

The code:

Sub Mcr1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then
For Each cell In rngTemp
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next
End If
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

still results in a message:

Run-time error '1004':

Method 'Range' of object '_Global' failed

with the text:

Range(Mid(strAddress, 2)).Select

highlighted.
--
Do check "Yes" if this post is helpful,
Best Regards,

Faraz


"Jacob Skaria" wrote:

Just one thing which I noticed is that the below line should be

For Each cell In rngTemp

'instead of
For Each cell In ActiveSheet.UsedRange


But i dont see any probs other than that...Try in the activesheet itself and
see

If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

I have tried the below with around 12 numbers satisfying the condition
scattered within the range..and found to be working fine...Just put a message
box to see what strAddress returns..

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:K30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If Not cell.HasFormula Then
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
End If
Next

End If
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

Thanx Jacob,

However, Error 1004, with
Range(Mid(strAddress, 2)).Select
highlighted is being faced.
--
Best Regards,

Faraz


"Jacob Skaria" wrote:

Faraz, you can try using COUNTIF() in from to check whether any number
exits..Advantages are..

--you can avoid the looping if there are no numbers...
--you can Exit the loop once the count is reached.

Sub Macro1()
Dim strAddress As String, cell As Range
Dim rngTemp As Range
Set rngTemp = Range("A1:J30")
If WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 10) - _
WorksheetFunction.CountIf(rngTemp, "" & (10 ^ 10) * 100) 0 Then

For Each cell In ActiveSheet.UsedRange
If cell.Value = (10 ^ 10) * 10 And _
cell.Value < (10 ^ 10) * 100 Then _
strAddress = strAddress & "," & cell.Address
Next
End If

If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

Hi Again

One way is to check the cell value and store the address in a string and
select at the end. There should be a much better way.

Sub Macro()
Dim strAddress As String, cell As Range
For Each cell In ActiveSheet.UsedRange
If cell.Value 100000000000# Then _
strAddress = strAddress & "," & cell.Address
Next
If strAddress < "" Then Range(Mid(strAddress, 2)).Select
End Sub

PS: You can modify the condition to suit

If this post helps click Yes
---------------
Jacob Skaria


"Faraz A. Qureshi" wrote:

What code would:
1. Find & Select cells;
2. With NUMBERS;
3. Which are of 12 digits, i.e. = 100000000000 & <=999999999999?
--
Best Regards,

Faraz

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Finding a number of values that adds up to a specific value Andy_0093 Excel Discussion (Misc queries) 1 January 2nd 08 07:50 PM
Finding cells with a specific number of characters Kamran Excel Discussion (Misc queries) 6 March 29th 06 11:04 PM
finding the number of rows and the first row with a specific value rjamison Excel Programming 0 June 14th 05 12:14 AM
finding the number of rows and the first row with a specific value rjamison Excel Programming 0 June 14th 05 12:14 AM
finding the number of rows and the first row with a specific value Bruce Bowler Excel Programming 4 April 20th 05 04:23 PM


All times are GMT +1. The time now is 03:42 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"