Forum Discussion

Sandeep_1992's avatar
Sandeep_1992
Regular Visitor
1 year ago
Solved

Funnel Comparision

  Hi Everyone, I have created this funnel using python - But, its not interactive with the other graphs... Any solution to make it interactive    Second, I wanted to compare Funnel with 2 di...
  • burakkaragoz's avatar
    burakkaragoz
    1 year ago

    If you're okay with a custom funnel, you can totally build one using a stacked bar chart or matrix visual with DAX measures. The key is to make sure your measures are filter-aware, like this:

    FunnelStage1 = 
    CALCULATE(
        COUNTROWS('YourTable'),
        'YourTable'[Stage] = "Stage 1"
    )

    This way, when you apply a slicer (like Region), the funnel will automatically update to reflect just that region’s data.

    You can then place each stage as a separate measure in a stacked bar or matrix to simulate a funnel layout — and it’ll stay interactive with the rest of your dashboard.
    translation and formatting supported by AI