DAX

Filtering rows if the text (string) match in Dax

In Power BI, you can filter rows in a table or dataset using Data Analysis Expressions (DAX) by creating measures or calculated columns that use the `FILTER` function to specify a condition for filtering rows based on a text (string) match. Here'…

Ranking DAX measures

In Power BI, you can rank DAX measures using functions like `RANKX()` or `TOPN()`. Here's how you can rank DAX measures: 1. **RANKX() Function:**    The `RANKX()` function is commonly used to rank items based on a measure. It assigns a rank to ea…

Load More
That is All