m4=b4 only if

  • Thread starter Thread starter Derek
  • Start date Start date
D

Derek

I want to copy data from on cell to another cell, but only if a third cell
has data in it.
 
Derek said:
I want to copy data from on cell to another cell,
but only if a third cell has data in it.

A little light on details, to say the least. "You get as good as you give".
Perhaps something like (in M4):

=if(A4="", "", B4)
 
Back
Top