A
Aline
There is an formula I’d like to add it in a macro.
=IF(AND(L3="Y", M3="Y", N3="Y"), "Y", "N")
I want it to automatically fill up for the rest of row. Similar another
function that was already added in the macro:
Formula:
=IF(OR(E3="B", E3="C", E3="E"), "Y", "N")
In the macro:
..Range("L3:L" & LastRow).Formula _
= "=IF(E3=""B"", ""Y"", IF(OR(E3=""C""," _
& "E3=""E""), ""Y"", ""N""))"
Any suggestion?
Thanks,
=IF(AND(L3="Y", M3="Y", N3="Y"), "Y", "N")
I want it to automatically fill up for the rest of row. Similar another
function that was already added in the macro:
Formula:
=IF(OR(E3="B", E3="C", E3="E"), "Y", "N")
In the macro:
..Range("L3:L" & LastRow).Formula _
= "=IF(E3=""B"", ""Y"", IF(OR(E3=""C""," _
& "E3=""E""), ""Y"", ""N""))"
Any suggestion?
Thanks,