You are on page 1of 2

Trainer Name: Jabivulla Vanalli

Email: jabivulla.v@gmail.com
Mobile: +91 7829533577

YouTube Channel: Power BI Real-time


Course Duration: 30 Hours

RELATED function in Power BI:


Returns a related value from another table.

Syntax:

RELATED(<column>)

Examples:

FILTER( 'InternetSales_USD', RELATED('SalesTerritory'[SalesTerritoryCountry])<>"United States")

Official Page: https://docs.microsoft.com/en-us/dax/related-function-dax

RELATED TABLE function in Power BI:


Evaluates a table expression in a context modified by the given filters.

Syntax:

RELATEDTABLE(<tableName>)

Examples:

= SUMX( RELATEDTABLE('InternetSales_USD')
, [SalesAmount_USD])

Official Page: https://docs.microsoft.com/en-us/dax/relatedtable-function-dax

LOOKUPVALUE function in Power BI:


Returns the value for the row that meets all criteria specified by search conditions. The function can
apply one or more search conditions.

Syntax:

LOOKUPVALUE(
<result_columnName>,
<search_columnName>,
<search_value>
[, <search2_columnName>, <search2_value>]…
[, <alternateResult>]
)

Examples:

Product = LOOKUPVALUE('Product'[Product], Sales[ProductKey], 'Product'[ProductKey])

Official Page: https://docs.microsoft.com/en-us/dax/lookupvalue-function-dax

You might also like