How to apply loop and condition statement in visible cells?

dmadhup

Board Regular
Joined
Feb 21, 2018
Messages
146
Office Version
  1. 365
hello,

So far I have this code. but not working for visible cells. Any idea, please!

Code:
For Each j In Range("A2:FL" & lastRow).SpecialCells(xlCellTypeVisible)
    ii = j.Row
    If Rows(ii).EntireRow.Visible = True Then
        If Range("V") <> "" Or Range("V") <> vbNullString Then _
            If UCase(Range("V" & ii)) Like "*360-*" _
                Or UCase(Range("V" & ii)) Like "*AMG-*" _
                Or UCase(Range("V" & ii)) Like "*BNK-*" _
                Or UCase(Range("V" & ii)) Like "*BRU-*" _
                Or UCase(Range("V" & ii)) Like "*EUG-*" _
                Or UCase(Range("V" & ii)) Like "*FIN-*" _
                Or UCase(Range("V" & ii)) Like "*KLA-*" _
                Or UCase(Range("V" & ii)) Like "*MIA-*" _
                Or UCase(Range("V" & ii)) Like "*VIA-*" _
                Range("FK" & ii) = "EM"


            If UCase(Range("V" & ii)) Like "*G-*" Then _
                Range("FK" & ii) = "FRE"
    End If
Next j
 
Last edited:
I see.
I know what you saying. Then, maybe this solution will not work.

Do you have any other idea to solve this problem?

Thank you
 
Last edited:
Upvote 0

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
depends on what the answer is to post#10 ;)
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,327
Members
452,635
Latest member
laura12345

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