LEFT DAX Function

The LEFT function returns the specified number of characters from the start of a text string.

DAX Syntax LEFT(text, num_chars)

The function has the following parameters:

Example: Create a calculated column. The following expression returns first three characters from the Country column.

DAX

First three digits of Country name = LEFT(Sheet1[Country], 3)
LEFT dax function