Replace the non-blank and non "Q" cells in column A with consecutive numbers

2Took

Board Regular
Joined
Jun 13, 2022
Messages
203
Office Version
  1. 365
Platform
  1. Windows
In column A, starting with A10 down, I have cells with an "X" and cells with a "Q". May have cells with other values. Need to replace the non-blank and non "Q" cells with consecutive numbers, all the way to the last non-blank cell.

2022-09-26_09h16_50.png
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Hi,

Let me know if this fits your need ?

chers
Rob

VBA Code:
Sub work()

Dim lastrow, x, count As Long

lastrow = ActiveSheet.Cells(Rows.count, 1).End(xlUp).Row
count = 1

For x = 10 To lastrow
    If Cells(x, 1) <> "" And Cells(x, 1) <> "Q" Then
        Cells(x, 1) = count
        count = count + 1
    End If
Next x

End Sub
 
Upvote 0
Solution
great, thanks for the feedback.
Cheers
Rob
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,930
Members
449,094
Latest member
teemeren

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