Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
vladimirkureza
Frequent Visitor

Subset Funnel

Hi,

I am trying to create a funnel where each layer is a subset of the previous.

I have next data model:

1.png

formula AMTchecks = IF(COUNTx(filter(checks; checks[customers_id] = customers[id]); checks[id]) >=1;COUNTx(filter(checks; checks[customers_id] = customers[id]); checks[id]);0)

if i build a sales funnel using attributes "AMTchecks" and "Count of id" as below:
2.png

 

then everything (filters and slicers) works fine, but each layer is not a subset of the previous.

Question: How to create the same sales funnel but where each layer is a subset of the previous?

I tried to create the following calculated table:

sales_funnel = DISTINCT(customers[AMTchecks])
amount_client = CALCULATe(COUNT(customers[id]); FILTER(customers; customers[AMTchecks] >= sales_funnel[AMTchecks]))

3.png

 

And build a sales funnel using these attributes as below:
4.png

 

the data is correct (each layer is a subset of the previous), but filters and slicers don't work.

2 REPLIES 2
v-sihou-msft
Microsoft Employee
Microsoft Employee

@vladimirkureza

 

In this scenario, you have your amount client answer the filter and slicer, you should create a measure instead of a calculated column. You can write your measure like below:

 

amount_client =
CALCULATE (
    COUNTA ( Customer[ID] ),
    FILTER ( ALL ( Customer ), Customer[AMTChecks] >= MAX ( Customer[AMTChecks] ) )
)

4.PNG

5.PNG

 

Regards,

Thanks for the answer!
But the question could not be solved in this way. As shown below, in this case each layer is not a subset of the previous (on the right, a funnel created using a calculated table, where each layer is a subset of the previous):

 

5.png

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.