Godders199

Active Member
Joined
Mar 2, 2017
Messages
313
Office Version
  1. 2013
Hello, I am trying to get the following to work, if does not error , just returns blank cell rather than 0 or 1, can someone tell me where i am going wrong please.

Dim lastrowcolumnA As Long
lastrowcolumnA = Range("a" & Rows.Count).End(xlUp).row
For i = 2 To lastrowcolumnA

If Cells(i, 14) >= 2 Or Cells(i, 15) >= 1 Then Cells(i, 16).Value = 1 Else Value = 0


So if cells14 =2 or greater or cells 15 =1 or greater ,cell 16 should show 1 otherwise 0
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
You missed a bit:

Rich (BB code):
If Cells(i, 14) >= 2 Or Cells(i, 15) >= 1 Then Cells(i, 16).Value = 1 Else Cells(i, 16).Value = 0
 
Upvote 0
This appears to work for me. Please use code tags in accordance with forum rules.

Code:
Option Explicit


Sub foo()
Dim i As Long
Dim lastrowcolumnA As Long
lastrowcolumnA = Range("N" & Rows.Count).End(xlUp).Row
For i = 2 To lastrowcolumnA


If Cells(i, 14) >= 2 Or Cells(i, 15) >= 1 Then Cells(i, 16).Value = 1 Else Cells(i, 16).Value = 0
Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,487
Messages
6,125,085
Members
449,206
Latest member
ralemanygarcia

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