About 4,030,000 results
Open links in new tab
  1. 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 …

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

  3. creating new table based on slicer selection in power bi using DAX

    Dec 27, 2022 · Now, I will put Table 1 in the slices visualization and it will have multiple selections. Using the slices selection, I want to create a new table that filters Table 2 using DAX. For e.g. suppose I …

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

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

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

  8. dax - How to apply a filter between two date column in powerbi

    Jan 7, 2024 · In the Filter pane, you can select Advanced filtering and then set the date with is on or after or is on or before, for each of the two date columns. You can also achieve the same with a …

  9. 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 step using: …

  10. Dax, Create a Table with a CrossJoin and a filter

    Nov 9, 2020 · Dax, Create a Table with a CrossJoin and a filter Asked 5 years ago Modified 5 years ago Viewed 6k times