PrecisionCalc
xl
Precision
Get Your Numbers Right

 

xlpLCM

Returns the least common multiple of a set of integers, with up to 32,767 significant digits of precision. Same as Excel's built-in LCM function, but with high precision.

The least common multiple is the smallest integer that is a multiple of the numbers in the set without a remainder.

Syntax

xlpLCM(numlist...,,format)

numlist... Required. The list of numbers and/or cell ranges for which to find the  least common multiple. Accepts up to 29 numlist arguments, or up to 28 if the optional format argument is used. Ignores text that can't be evaluated to a number. Ignores blank cells.

Non-integers are truncated to an integer.

Does not accept negative numbers.

format Optional. Determines formatting options (adding thousands separators and currency symbol, and formatting in exponential notation).

Any argument that begins with the text "format:" (must include the colon at the end) is evaluated as a format argument.

Each of the three format options can be used individually in separate arguments, or any number of them can be combined in the same argument.

When combining multiple format options into one format argument:

  • The text "format:" need only appear at the beginning.
  • The text thousands", "currency", or "exponent" can appear anywhere after the text "format:".
  • See below for examples of valid and invalid combination format values.

Must be enclosed in double quotes ("") if included directly in an xlpLCM argument. Double quotes are not necessary if the format argument references a cell in which the format argument is entered.

May be included anywhere in the series of xlpLCM arguments -- can be the first argument, or the last, or anywhere in-between.

The format argument is not case sensitive.

format value

Result
format:thousands Return value is formatted with thousands separators (commas in English).
format:currency Return value is formatted with the local currency symbol. The currency symbol will be added either to the beginning or to the end of the result, whichever is appropriate for the locale.
format:exponent Return value is formatted in exponential notation.

Examples of valid combination format values

format:thousands,currency
(recognizes thousands and currency)
format:  thousands - currency  blah blah this extra text is ignored
(recognizes thousands and currency)
format:thousandscurrency
(recognizes thousands, and currency)
FORMAT:THOUSANDS,CURRENCY
(recognizes thousands, and currency)
Format:Thousands,cUrReNcY
(recognizes thousands and currency)
format:thousands  blah blah this extra text is ignored  currency
(recognizes thousands and currency)
format:currency,thousands
(recognizes currency and thousands)
Examples of invalid combination format values
format thousands,currency
(missing colon (:) after "format")
format = thousands,currency
(missing colon (:) after "format")
Example of partially valid combination format value
format:thousand,currency
(recognizes currency, BUT "thousands" is misspelled as "thousand")

Remarks

Examples

Formula Description Result
=xlpLCM(3,4) Least common multiple of 3 and 4 12
=xlpLCM(3,4,6) Least common multiple of 3, 4, and 6 12
=xlpLCM(6,4,3) Least common multiple of 6, 4, and 3 12
=xlpLCM(3.1,4.9) Least common multiple of 3.1 and 4.9, after truncating both to integers (3 and 4) 12
(Compare to xlpLCM2)
=xlpLCM(2.5,5) Least common multiple of 2.5 and 5, after truncating both to integers (2 and 5) 10
(Compare to xlpLCM2)
=xlpLCM(2.5,7.5,12.5) Least common multiple of 2.5, 7.5, and 12.5, after truncating to integers (2, 7, and 12) 84
(Compare to xlpLCM2)
=xlpLCM2(A1:A3)
 
  A
1  20,000,000,000,000,000,002
2  30,000,000,000,000,000,003
3  40,000,000,000,000,000,004
Least common multiple of values in cells A1:C3 120000000000000000012
=xlpLCM(A1:B2,8,12)
 
  A B
1 2 4
2 3 6
Least common multiple of values in cells A1:B2, and the values 8 and 12 24
=xlpLCM(A1:C3,"format:thousands,currency")
 
  A B C
1 10,000 abc 70,000
2 20,000 50,000  
3 30,000 60,000 90,000
Least common multiple of values in cells A1:C3, ignoring text in cell B1 and ignoring blank cell (C2), and formatting with thousands separators and local currency symbol $6,300,000
=xlpLCM(A1:C3,format:thousands,currency)
 
  A B C
1 10,000 abc 70,000
2 20,000 50,000  
3 30,000 60,000 90,000
Least common multiple of values in cells A1:C3, ignoring text in cell B1 and ignoring blank cell (C2), and with double quotes missing from around formatting argument 6300000

 

=xlpLCM(A1:C3,A4)
 
  A B C
1 10,000 abc 70,000
2 20,000 50,000  
3 30,000 60,000 90,000
4

format:thousands,currency

Least common multiple of values in cells A1:C3 and A4, ignoring text in cell B1 and ignoring blank cell (C2), and formatting with thousands separators and local currency symbol $6,300,000
=xlpLCM(A1:C3,"format:currency",A4,2000,5000,8000)
 
  A B C
1 10,000 abc 70,000
2 20,000 50,000  
3 30,000 60,000 90,000
4

format:thousands

 
Least common multiple of values in cells A1:C3 and A4, and of the values 5000, 2000, and 3000, ignoring text in cell B1 and ignoring blank cell (C2), and formatting with thousands separators and local currency symbol $12,600,000
=xlpLCM(A1:C3,A4,2000,5000,8000)
 
  A B C
1 10,000 abc 70,000
2 20,000 50,000  
3 30,000 60,000 90,000
4

format:exponent

 
Least common multiple of values in cells A1:C3 and A4, and of the values 5000, 2000, and 3000, ignoring text in cell B1 and ignoring blank cell (C2), and formatting in exponential notation 1.26E+7

See Also

xlpGCD
xlpLCM2