using left and right formula...in VBA

Status
Not open for further replies.

mrinal saha

Board Regular
Joined
Jan 20, 2009
Messages
229
Hi All,

I am using logic of right function in vba but somehow its is working...

What I am looking for is, if the cell doesn't end with US or PR, cut the row and paste it at the top of the data. Inspite, it cuts everyrow and paste it on the top one by one regardless the parameters.

For a = 7 To rownum - 2
If Right(Cells(a, 7).Value, 2) <> "US" Or Right(Cells(a, 7).Value, 2) <> "PR" Then
Cells(a, 7).EntireRow.Cut
Rows("6:6").Select
Selection.Insert Shift:=xlDown
End If
Next a

Any help would be appreciated...Many thanks.

regards,
Mrinal
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Status
Not open for further replies.

Forum statistics

Threads
1,224,605
Messages
6,179,860
Members
452,948
Latest member
UsmanAli786

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