SENDING value to cell


Posted by Jack on January 04, 2002 8:39 PM

Possible stupid question: Is there any way to SEND a resultant value, after it's calculated, to another cell? In other words, could I SEND the resultant value from cell g7 to cell b2? Thank You.



Posted by Aron on January 04, 2002 8:48 PM

Try
=If(g7="","",G7)

In Cell B7. In plain language, this is 'If G7 is empty, keep B7 empty. Otherwise, let b7 equal g7.'

Is this what you're looking for?