Setting range looking for text across several columns

lizsunnysideup

New Member
Joined
Jun 29, 2019
Messages
34
I am using the following for a macro:
Dim y As Long

For y = 1 To Cells(Rows.Count, “AK”).End(xlUp).Row

If Range(“AK:AM” & y).Value = “DRUG REQUIRES PRIOR AUTHORIZATION” And Range(“A” & y).Value = “” Then

Range(“A” & y).Value = “PA REQD”

End If

Next y

However, I keep getting an error message of method 'range' of object_global failed. I'm not sure how to fix, but I'm trying to flag claims with the text DRUG REQUIRES PRIOR AUTHORIZATION which appears in several different columns.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You need to check each column:

VBA Code:
Sub test_1()
  Dim i As Long
  Dim txt As String
  
  txt = "DRUG REQUIRES PRIOR AUTHORIZATION"
  
  For i = 1 To Cells(Rows.Count, "AK").End(xlUp).Row
    If (Range("AK" & i).Value = txt Or Range("AL" & i).Value = txt Or Range("AM" & i).Value = txt) _
       And Range("A" & i).Value = "" Then
      Range("A" & i).Value = "PA REQD"
    End If
  Next
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,130
Messages
6,123,220
Members
449,091
Latest member
jeremy_bp001

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