J
Jeff Mackeny
I really hope one can show how to do this, I have lots of IF formulas like
the two examples below, that if the logical test is true it enters data in
the cell from a sheet called MasterList, is it in anyway possible to have
another logical test that if true will copy down the data in the cell
regardless if the data in MasterList!B4 changed, for example, let take the
first formula, if A4 is true, it enters 'John doe' in the cell, because
MasterList!B4 currently has 'John Doe' in the cell, I will add a second
logical test that if true will copy down 'John Doe' in that cell and no
longer check, or perhaps ignore MasterList!B4, so even if MasterList!B4 will
change to 'Jim Smith' that cell will still say 'John Doe'
=IF(AND(A4=MasterList!A4,A4<>""), MasterList!B4,"")
=IF($D$1="on", IF(OR(ISNUMBER(MasterList!D4)),MasterList!D4,""),"")
Thanks
the two examples below, that if the logical test is true it enters data in
the cell from a sheet called MasterList, is it in anyway possible to have
another logical test that if true will copy down the data in the cell
regardless if the data in MasterList!B4 changed, for example, let take the
first formula, if A4 is true, it enters 'John doe' in the cell, because
MasterList!B4 currently has 'John Doe' in the cell, I will add a second
logical test that if true will copy down 'John Doe' in that cell and no
longer check, or perhaps ignore MasterList!B4, so even if MasterList!B4 will
change to 'Jim Smith' that cell will still say 'John Doe'
=IF(AND(A4=MasterList!A4,A4<>""), MasterList!B4,"")
=IF($D$1="on", IF(OR(ISNUMBER(MasterList!D4)),MasterList!D4,""),"")
Thanks