LOG10 is a DAX function that returns the base-10 logarithm of a number.
Syntax
LOG10( Number )
Argument | Properties | Description |
---|---|---|
Number | The positive number for which you want the base-10 logarithm. |
LOG10 is a DAX function that returns the base-10 logarithm of a number.
LOG10( Number )
Argument | Properties | Description |
---|---|---|
Number | The positive number for which you want the base-10 logarithm. |
A decimal number.
The LOG function lets you change the base of the logarithm, instead of using the base 10.
The following formulas return the same result, 2:
= LOG(100,10)
= LOG(100)
= LOG10(100)
Other functions related to LOG10 are:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy