How to set range for changing text

lizsunnysideup

New Member
Joined
Jun 29, 2019
Messages
36
I'm using the following code which isn't working:

Dim k As Long

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

If Range(“AK” & k).Value =”^MUST USE*” And Range(“A” & k).Value = “” Then

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

End If

Next k

I'm trying to categorize messages in column AK, but the text from column AK has hundreds of different text such as ^MUST USE NOVOLOG, ^MUST USE VIAGRA, ^MUST USE ATORVASTATIN, etc. The only thing that remains the same is ^MUST USE but I'm not sure how to set this as the value.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Try this.

VBA Code:
  If Range("AK" & k).Value Like "^MUST USE*" And Range("A" & k).Value = "" Then Range("A" & k).Value = "PA REQD"
 
Upvote 0
Solution

Forum statistics

Threads
1,215,863
Messages
6,127,394
Members
449,382
Latest member
DonnaRisso

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