how to auto copy the value of B3 to E5?

D

Dave Peterson

How about just make E5 retrieve the value from B3?

=B3

or better if B3 could be empty:

=if(b3="","",b3)
 
Top