Setting default quantities

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

Guest

In my spreadsheet I need a cell to default to 1 if the total units entered in
the cell does not exceed 6.64. If the total units enetered does hit 6.65 or
greater than I want that quantity enetered into the cell. Please explain how
to do this.

Thanks so very much.
 
Hi!

You need to use a VBA event change procedure to do this in the same cell. I
can't help you with that.

You could use a helper cell:

A1 = total units

Formula in B1:

=IF(AND(A1>0,A1<6.65),1,A1)

Biff
 

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