How to make "common factor" formula ?

  • Thread starter Thread starter toyota58
  • Start date Start date
T

toyota58

Hi,


I'm an Excel newbie. I want to make a simple "common factor" formula.
But I don't know what function to use or the formula.

Example

A1 = 369
A2 = 468
A3 = common factor is 6


Another Example

A1 = 355
A2 = 145
A3 = 225
A4 = common factor is 5



Thank You.
 
There's an =GCD() (greatest common divisor) in the analysis toolpak:

=gcd(369,468)
returned 9.

=gcd(a1:a3)
(with your data in A1:A3)
returned 5.

If you get a #name! error, tools|Addins and check analysis toolpak.
 

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