Division in a column in excel.

  • Thread starter Thread starter ChrisB
  • Start date Start date
C

ChrisB

How do I divide an entire column by a specific number? Furthermore, is
it possible to round those numbers so I dont get "4.758" for example,
and can it overlook text in the same column on certain cells ?
 
You mean like this?

Assuming the numbers you want to divide are in Column A, place this
formula in B1 and fill down.

I don't know why you would want to have text in column with a bunch of
numbers in the first place, but this should do the trick. If it
doesn't, post back.

=IF(ISERROR(ROUND(A1/2,0)),"",ROUND(A1/2,0))

Cheers,
Jason Lepack
 

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