I know this will be a stupid simple answer, but it's killing me right now...
For Each cell In rng2
If cell.Offset(0, -13) And cell.Offset(0, -12).Value <> "" Then
cell.Value = 1
Else
cell.Value = 0
End If
Next cell
Where the .offset and .offset is, how can i just say
If cell.offset(0,12:13)
I know that's not it... This one is simple however, getting this piece right will save me so much headache throughout the vba code all over the workbook.
Thanks for helping this rookie in advance!
If cell.Offset(0, -13) <> "" And cell.Offset(0, -12).Value <> "" Then. Your expression means:cell.Offset(0, -13) = True And cell.Offset(0, -12).Value <> ""which I doubt is what you meant.