Division

G

Guest

I have a Col A of numbers. I want the result in Col B to return the value if
it can be fully divided by a certain number, e.g. 5, or else return a zero.
Does anybody know what should be the formula in Col B to get those results?

Col A Col B
------ ------
23 0
45 9
12 0
16 0
25 5
 
G

Guest

EK said:
I have a Col A of numbers. I want the result in Col B to return the value if
it can be fully divided by a certain number, e.g. 5, or else return a zero.
Does anybody know what should be the formula in Col B to get those results?

Col A Col B
------ ------
23 0
45 9
12 0
16 0
25 5

YOU CAN USE BELOW MENTIONED FORMULA

=IF(MOD(A2,5)=0,A2/5,0)

H S SHASTRI

INDIA
 

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

Top