For Loop

millhouse123

Active Member
Joined
Aug 22, 2006
Messages
335
Below is the simple loop I am trying to use. It is just a very small section of the total project but should be plenty to solve the problem.

Set WS2 = Worksheets("Report")
FinalColumn2 = WS2.Cells(3, 230).End(xlToLeft).Column
x = 0

For x = 4 To FinalRow2
If Cells(x, FinalColumn2 + 2).Value = "#N/A" Then Cells(x, FinalColumn2 + 2).Value = "0"
Next x

The variables are all storing correctly I just get a type mismatch error. Not sure what I am doing wrong.

Thanks
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Forum statistics

Threads
1,213,486
Messages
6,113,932
Members
448,533
Latest member
thietbibeboiwasaco

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