creating a formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i am relatively new to using computors and i was wondering if i can create a formula to work out what is left from a total if where the total is constant for instance hours in the day =24 (b9) and some of the hours are used e.g. eating 1 hour (b3) sleeping 7 hours (b4) using p.c. 3 hours (b5) watching t.v. 2 hours (b6) work 8 hours (b7) is there an equation i can use to automatically fill in misc. (b8)
 
bugsy

In b8 type:

=B9-SUM(B3:B7)

Andy.

bugsy malone said:
i am relatively new to using computors and i was wondering if i can create
a formula to work out what is left from a total if where the total is
constant for instance hours in the day =24 (b9) and some of the hours are
used e.g. eating 1 hour (b3) sleeping 7 hours (b4) using p.c. 3 hours (b5)
watching t.v. 2 hours (b6) work 8 hours (b7) is there an equation i can use
to automatically fill in misc. (b8)
 
bugsy malone said:
i am relatively new to using computors and i was wondering if i can create
a formula to work out what is left from a total if where the total is
constant for instance hours in the day =24 (b9) and some of the hours are
used e.g. eating 1 hour (b3) sleeping 7 hours (b4) using p.c. 3 hours (b5)
watching t.v. 2 hours (b6) work 8 hours (b7) is there an equation i can use
to automatically fill in misc. (b8)

=B9-SUM(B3:B7)
 
One way

=MAX(0,B9-SUM(B3:B7))



--

Regards,

Peo Sjoblom


bugsy malone said:
i am relatively new to using computors and i was wondering if i can create
a formula to work out what is left from a total if where the total is
constant for instance hours in the day =24 (b9) and some of the hours are
used e.g. eating 1 hour (b3) sleeping 7 hours (b4) using p.c. 3 hours (b5)
watching t.v. 2 hours (b6) work 8 hours (b7) is there an equation i can use
to automatically fill in misc. (b8)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top