ERROR OBJECT REQUIRED

srikanth sare

New Member
Joined
May 1, 2020
Messages
30
Office Version
  1. 2013
Platform
  1. Windows
  2. MacOS
  3. Mobile
  4. Web
Private Sub St()
On Error GoTo EH
Application.Run "TurnOff"

Sheet8.Range("A:CR").EntireColumn.Hidden = False
Dim K As Long
For K = 0 To 15
Sheet8.Range("AE:AE,BG:BG").Offset(, K).EntireColumn.Hidden = Sheet2.Range("AF38").Offset(K).Value = "NO"
Sheet8.Range("S:S").EntireColumn.Hidden = Sheet2.Range("AC52").Value = "NO"
Next
Sheet8.Range("CT:EB").EntireColumn.Hidden = True

Sheet5.Unprotect "1818"
Sheet5.Cells.Copy
Sheet6.Range("A1").PasteSpecial xlPasteValues
Sheet6.Range("A1").PasteSpecial xlPasteFormats
Application.CutCopyMode = False
Sheet8.Range("A6:CR9999").Clear

Dim xRg, raSource As Range
Dim i, N As Long
Dim MyValue As Variant

i = Sheet6.UsedRange.Rows.Count
Set xRg = Sheet6.Range("B6:B" & i)

MyValue = Sheet5.Range("L1").Value
For N = 1 To xRg.Rows.Count
For Each KCELL In Intersect(xRg, xRg.Rows(N).EntireRow)
If KCELL.Value = MyValue Then
If raSource Is Nothing Then
Set raSource = Range(Cells(KCELL.Row, 1), Cells(KELL.Row, 96)) ' ERROR AT THIS LINE OBJECT REQUIRED
Else
Set raSource = Union(raSource, Range(Cells(KCELL.Row, 1), Cells(KELL.Row, 96)))
End If
Exit For
End If
Next
Next N

raSource.Copy
Sheet8.Range("A6").PasteSpecial xlPasteAllUsingSourceTheme
Application.CutCopyMode = False
Sheet8.Activate

CleanUp: On Error Resume Next
Application.Run "TurnOn"
Sheet6.Cells.Clear
Sheet5.Protect "1818", DrawingObjects:=False, Contents:=True, Scenarios:=False, UserInterFaceOnly:=True, AllowFormattingCells:=True, AllowFormattingColumns:=True, AllowFormattingRows:=True, AllowSorting:=True, AllowFiltering:=True
Exit Sub
EH: Debug.Print Err.Description ' Do error handling
MsgBox "Sorry, an error occured." & vbCrLf & Err.Description, vbCritical, "Error!"
Resume CleanUp
End Sub
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
You have a typo:

Rich (BB code):
Set raSource = Range(Cells(KCELL.Row, 1), Cells(KCELL.Row, 96)) ' ERROR AT THIS LINE OBJECT REQUIRED

Luckily for you, you got an error this time. But often, typos will make your code behave in unexpected ways and give incorrect results.

I recommend you always use Option Explicit!

By the way, your unqualified references to Cells() will refer to the ActiveSheet. That may not be what you want?
 
Upvote 0
Solution
You have a typo:

Rich (BB code):
Set raSource = Range(Cells(KCELL.Row, 1), Cells(KCELL.Row, 96)) ' ERROR AT THIS LINE OBJECT REQUIRED

Luckily for you, you got an error this time. But often, typos will make your code behave in unexpected ways and give incorrect results.

I recommend you always use Option Explicit!

By the way, your unqualified references to Cells() will refer to the ActiveSheet. That may not be what you want?
that solved the problem
thank you so much
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,294
Members
449,077
Latest member
Rkmenon

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