using left and right formula...in VBA

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

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Try

Rich (BB code):
If Right(Cells(a, 7).Value, 2) <> "US" And Right(Cells(a, 7).Value, 2) <> "PR" Then
 
Upvote 0
I suggest you use
Right$ and Left$
rather than
Right and Left

The first versions are string functions and therefore will be more efficient codewise when processing many loops than their variant cousins.

Cheers

Dave
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,741
Members
452,940
Latest member
rootytrip

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