How call a function?

C

Casrlos A.

Hello all
I need to call a function named Charge( ) but only when the cell G8 be used.

How can I do?
Thanks a lot.
(Excel 2003)
 
P

Pete_UK

Try something like this:

=IF(G8="","",Charge( ... ) )

I assume that Charge is a User-defined function.

Hope this helps.

Pete
 
Top