G
Guest
I have four columns I am working with B344:E362. Column B I am trying to
populate based on a list of options from D. Column E is a list of TRUE or
FALSEs based on whether the value should be added to column B. I am trying a
loop at follows and I don't think I am on the right track.
Dim Check, AddValue
Check = Sheets(“Defaultsâ€).Range(“D344â€).Value
AddValue = Sheets(“Defaultsâ€).Range(“B344â€)
Do
If Sheets(“Defaultsâ€).Range(“E344â€) = True Then
AddValue = Check
Else
End If
Check = Check.Offset(1,0)
Loop Until Check = “â€
Thanks for any help
populate based on a list of options from D. Column E is a list of TRUE or
FALSEs based on whether the value should be added to column B. I am trying a
loop at follows and I don't think I am on the right track.
Dim Check, AddValue
Check = Sheets(“Defaultsâ€).Range(“D344â€).Value
AddValue = Sheets(“Defaultsâ€).Range(“B344â€)
Do
If Sheets(“Defaultsâ€).Range(“E344â€) = True Then
AddValue = Check
Else
End If
Check = Check.Offset(1,0)
Loop Until Check = “â€
Thanks for any help