DAX Math & Trigonometric - LOG10 function



Description

Returns the base 10 logarithm of a number.

Syntax

LOG10 (<number>) 

Parameters

Sr.No. Parameter & Description
1

number

A positive number for which you want the base 10 logarithm.

Return Value

A decimal number.

Remarks

You can use DAX LOG function, if you want to use a base other than 10 of the logarithm.

Example

= LOG10 (5) returns 0.698970004336019. 

This is equivalent to LOG (5) or LOG (5,10).

dax_functions_mathematical_trigonometric.htm
Advertisements