Is there a Division funtion in Excel?

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

Guest

Does anyone know if there is and what is the name for the division funciton
in Excel? I only found MOD, but no DIV in the funtions Excel provides. Thanks!
 
In Excel division is not a function it is a language primitive like add,
subtract and multiply. If you want to divide the contents of A1 by B1 and
display the result in C1, enter


=A1/B1

in C1.

Good Luck
 
Seaflower

The / character is the division function.

=4/2 results in 2


Gord Dibben Excel MVP
 
Seaflower -
Does anyone know if there is and what is the name for the division
funciton in Excel? I only found MOD, but no DIV in the funtions Excel
provides. Thanks! <

Most people use the division operator, i.e., slash. For example, to divide
the contents of A2 by the contents of A3, enter in some other cell =A2/A3.

In some situations you could use the QUOTIENT worksheet function, i.e.,
=QUOTIENT(A2,A3), but it returns only the integer portion of the division.

- Mike
www.mikemiddleton.com
 

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