Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 months ago
Solved

Drill Through with comma separated values

Team, I’m trying to understand whether the following drillthrough behavior is achievable in Power BI. Scenario: I have a bar chart with 4 categories: A, B, C, D Drillthrough is en...
  • v-saisrao-msft's avatar
    v-saisrao-msft
    8 months ago

    Hi Anonymous,

    The “Query has exceeded the available resources” error in Power BI occurs when the engine is unable to process a query due to limitations in memory, CPU, or execution capacity. This issue is related to the system's capacity or the complexity of the query, rather than a DAX syntax error.

    To resolve this issue:

    • Avoid using a measure as a visual-level filter on a detailed table.
    • Incorporate the logic into the data model by creating a calculated column, such as
    Has Affiliation Change =
    IF (
        CONTAINSSTRING (
            'AFFILIATION CHANGE FLAG'[affiliation_change_category],
            RELATED ( 'Dim Affiliation Category Bridge'[affiliation_change_category] )
        ),
        1,
        0
    )
    

    Use slicers or dimension tables to apply filters, rather than using measures.

     

    Thank you.