how to use the Variable having Cell address in another formula

sunilbsrv2k

Board Regular
Joined
May 25, 2018
Messages
73
Hi,

I am trying to get the address of a cell with a certain criteria, which will be starting cell of the range; one more cell with another criteria will be end point in the range.

The addresses of these are successfully obtained, but when I use them in range function, its giving error. Please help:

VBA Code:
Sub chkselect()

Dim rng As Range
Dim i As Range
Dim srng, erng

Set rng = Sheet1.Range("C3:Z3")
For Each i In rng
    If i & i.Offset(-1, 0) = "202035" Then
        srng = i.Address
    End If
Next

For Each j In rng
    If j & j.Offset(-1, 0) = "202052" Then
        erng = j.Address
    End If
Next

cells(Range(i):Range(j)).copy


End Sub
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
You are welcome
And thank you for the feedback
Be happy
 
Upvote 0

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,077
Latest member
Jocksteriom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top