Calculation

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

Guest

I have a calculation that gives me a percentage. This percentage needs to
then be divided by .50. However, if the percentage in the field is greater
than 4% it only divides it by 4%, no more. How would this be written?
 
I think this is what you mean:

=IF(A1>0.04,A1/0.04,A1/0.5)

assuming your percentage value is in A1.

Hope this helps.

Pete
 
If C1 is the cell with the calculation,
then place in D1:
=IF(C1>4%,C1/4%,C1/50%)
 

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