About 287,000 results
Open links in new tab
  1. Combine PowerBI DAX Filter and SELECTCOLUMN - Stack Overflow

    Jul 17, 2019 · I want to create a new table based on this one: that filters for Warehouse=2 and "drops" the columns "Price" and "Cost" like this: I have managed to apply the filter in the first …

  2. DAX Calculate function with and without FILTER - Stack Overflow

    The difference here is that CALCULATE allows simple filters which will replace the existing filter context. In your example, CALCULATE will compute the measure [X] using the existing filter …

  3. How can I get one column after a filter with DAX in PowerBI

    Feb 4, 2022 · Lets say I have a date table which contains many fields. However I just want to get the week column from it, how can I do that? I was able to apply the filter like this. today = …

  4. Difference between FILTER function and CALCULATE function in …

    Jul 19, 2024 · It's often used within CALCULATE, SUMX, AVERAGEX, etc. CALCULATE: Used to modify the filter context for an expression. It's a powerful function for performing context …

  5. 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.

  6. Filter function does not work properly, not filtering (DAX)

    Sep 1, 2020 · 0 I have a problem with my filter function. I want my code to calculate a column that states whether the row is a returning customer for the therapist - so there has to be an earlier …

  7. PowerBI DAX - Using a measure as a filter within a CALCULATE …

    But I need the filter component of the the Calculate() function (i.e , DimDate2 [Dim Date] = DATE (2018,06,18)) to be dynamically populated from the max date on the date slicer. I understand, …

  8. Counting TRUE() and False() in Power BI Using COUNTAX and FILTER

    The problem is in the second parameter of the COUNTAX () function.It should be the column/item you want to count instead of the same listed filter item. So these functions should give you the …

  9. 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 …

  10. 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] …