About 50 results
Open links in new tab
  1. DAX FILTER function with multiple criteria - Stack Overflow

    I have a DAX statement I run inside SSMS. my original statement is: evaluate (filter ('rptLoan', [RemainingDays] <= 10)) and it works fine. I want to add another criteria as below evaluate (filter ('

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

    Mar 29, 2021 · 2 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 …

  3. Filter Multiple Criteria in Power BI Dax - Stack Overflow

    May 10, 2022 · Filter Multiple Criteria in Power BI Dax Asked 3 years, 11 months ago Modified 3 years, 11 months ago Viewed 3k times

  4. How to apply OR logic across different dimension filters in a DAX …

    May 12, 2025 · ) In DAX, I want to create a measure that sums sales under similar conditions, such as: dim_items [item_code] = 100 AND dim_product_line [pl_code] IN {1,2,3} OR dim_items [item_code] …

  5. filter - Condition with multiple columns in DAX - Stack Overflow

    can I somehow filter in DAX with multiple columns? I need filter that the difference between two dates are lower than 300 days like below. EVALUATE ( CALCULATETABLE ( SUMMARIZE ...

  6. excel - Using Multiple filters in DAX - Stack Overflow

    0 Well I think based on your request to filter down to 5 different SKUs that you actually shouldn't be using DAX to solve your problem. If you just insert a pivot table in Excel you can add SKU to rows …

  7. Multiple filters with multiple tables and columns - Stack Overflow

    Sep 26, 2018 · Multiple filters with multiple tables and columns Ask Question Asked 7 years, 6 months ago Modified 8 days ago

  8. powerbi desktop - How to use multiple filters & parameters in a DAX ...

    Nov 21, 2024 · The report must have several interactive filters enabled that a user will select to filter out only required information. I was able to implement one filter with the following DAX expression:

  9. Count Distinct with Multiple Conditions - Stack Overflow

    Jul 19, 2019 · It doesn't say you're "using it too many times", it says you're passing too many arguments to the filter. If you want to filter for multiple conditions, you can separate them with && or || depending …

  10. DAX - Filter Table by Multi Select Filter Condition

    Jan 12, 2021 · Am trying to filter a table with Multi Selection Filter. DAX: To select the values in the filter selected (Multi) SelectedEnvironments = CONCATENATEX ( VALUES ( …