LOOKUPVALUE

How to Use the Power BI DAX function LOOKUPVALUE

Understanding the LOOKUPVALUE Function

The LOOKUPVALUE function is a DAX function that retrieves a value from a table, based on one or more search criteria. The syntax of the function is as follows:


LOOKUPVALUE ( ❰Result_Column❱, ❰Search_Column1❱, ❰Search_Value1❱, [❰Search_Column2❱, ❰Search_Value2❱, …] )


- `Result_Column`: The name of the column that contains the value to be retrieved.

- `Search_Column1`: The name of the column that contains the first search criteria.

- `Search_Value1`: The value to be searched for in the first search column.

- `Search_Column2`: (Optional) The name of the column that contains the second search criteria.

- `Search_Value2`: (Optional) The value to be searched for in the second search column.

The LOOKUPVALUE function returns a single value, which is the value in the result column that corresponds to the search criteria. If no matching value is found, the function returns blank.

Using the LOOKUPVALUE Function in Power BI

To use the LOOKUPVALUE function in Power BI, we first need to have a table with the data we want to search. For example, let's say we have a table called Sales, which contains the following columns:

- Product: The name of the product.

- Date: The date of the sale.

- Sales: The amount of sales.

We want to find the total sales for a specific product, on a specific date. We can use the LOOKUPVALUE function to do this. Here's how:

1. Create a measure that calculates the total sales for each product, using the SUMX function:


Total Sales = SUMX(Sales, Sales[Sales])


This measure calculates the sum of the Sales column, for each row in the Sales table.

2. Create another measure that uses the LOOKUPVALUE function to find the total sales for a specific product and date:


Sales Lookup = LOOKUPVALUE(Sales[Total Sales], Sales[Product], “Product A”, Sales[Date], DATE(2021, 1, 1))


This measure searches the Sales table for the value in the Total Sales column, where the Product column is "Product A" and the Date column is January 1, 2021.

Note that the search criteria can be any valid DAX expression, not just a literal value. For example, we can use a measure to define the search criteria.

3. Use the Sales Lookup measure in a visual, such as a table or a card, to display the result.


| Product | Date | Sales Lookup |

|———|————|————–|

| Product A | 1/1/2021 | $10,000 |


This is just one example of how to use the LOOKUPVALUE function in Power BI. There are many other use cases, depending on the data and the analysis needs. Here are some tips and best practices to keep in mind:

- Use the function sparingly, as it can be slow and resource-intensive for large datasets.

- Avoid using the function in calculated columns, as it can lead to circular dependencies and performance issues.

- Combine the function with other DAX functions, such as CALCULATE or FILTER, to create more complex calculations.

- Use variables to simplify the syntax and improve readability, especially for longer formulas.

- Test the function with different scenarios and edge cases, to ensure correct and consistent results.

The LOOKUPVALUE function is a powerful tool for finding specific values in a table, based on one or more search criteria. In Power BI, the function can be used in various ways, from simple lookups to more complex calculations. By understanding the syntax and the best practices, users can leverage the full potential of the function and improve their data analysis skills.

Power BI DAX Training Courses by G Com Solutions (0800 998 9248)

Upcoming Courses

Contact Us

    Subject

    Your Name (required)

    Company/Organisation

    Email (required)

    Telephone

    Training Course(s)

    Your Message

    Upload Example Document(s) (Zip multiple files)