About 9,130,000 results
Open links in new tab
  1. How do I put a condition inside a filter in power BI (DAX)?

    Jan 28, 2022 · From what I understand I need to replace the IF function by a filter, but since there are several filters already I get confused as to how to do that in Power BI.

  2. DAX Calculate Formula with both "AND" and "OR" filters (PowerBI)

    Dec 16, 2021 · Environment: PowerBI I had a DAX formula that worked as expected when I had just one filter: # Bot Responses = CALCULATE ( [countUniqueActivityId], customEvents …

  3. Multiple Filters in DAX COUNT (AND OR) - Stack Overflow

    Mar 29, 2021 · I'm new to DAX and still trying to get the hang of the basics! I'm stuck on a Power BI measure which needs to count the rows with the first filter, but only return a figure based on either …

  4. dax - How to apply a filter based on the current row - Stack Overflow

    Feb 21, 2020 · How to apply a filter based on the current row Asked 5 years, 9 months ago Modified 5 years, 9 months ago Viewed 2k times

  5. dax difference between filter vs filter values - Stack Overflow

    Jan 19, 2022 · The FILTER function is a table function, meaning it will return a table. In the case of your second example, it is likely that you will get a scalar value (a single value) because you are filtering a …

  6. How to calculate SUM with filter using DAX? - Stack Overflow

    Mar 9, 2023 · I did this way Total = SUMX(FILTER('Backlog items', 'Backlog items'[Name]="*Student*"),[Score]) I need to calculate the sum of [Score] when the [Name] contains …

  7. Power BI: Filter a visual with a measure value - Stack Overflow

    Dec 8, 2023 · DAX Query Filter = IF (VALUES (TableA [Number])= [Measure],1,0) Then I tried to filter this measure on the filter panel with values which have a 1. I don't want to create a extra measured …

  8. powerbi - NOT IN Dax equivalent - Stack Overflow

    Feb 8, 2022 · 0 still very new to DAX and hate it so far. where is the logic? I have an expression below that creates data for a column based on if the data meets the criteria. What I have is a WORKING …

  9. Combine PowerBI DAX Filter and SELECTCOLUMN - Stack Overflow

    Jul 17, 2019 · Combine PowerBI DAX Filter and SELECTCOLUMN Asked 6 years, 4 months ago Modified 2 years, 2 months ago Viewed 83k times

  10. sql server - Is there any function in dax to find string like in SQL ...

    Feb 2, 2022 · I'm looking for a DAX function in which I can find a string in column like what we do in Sql by using like operator i.e. where itemed like ('ABC%')