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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
hamadani
Frequent Visitor

Delta Funnel

Hi,

 

I have a following sample table:

Page NameCustomer ID
Page ACustomer 1
Page ACustomer 2
Page BCustomer 1
Page BCustomer 2
Page BCustomer 3
Page BCustomer 4
Page CCustomer 1
Page DCustomer 1
Page DCustomer 2

 

From the above table, I have created a funnel which shows the unique number of customers per page

Page NameNo. Unique Customers
Page A2
Page B4
Page C1
Page D

2

 

The funnel is sorted automatically as shown below (with many more page names that I have in my source data):

hamadani_0-1656429876025.png

 

My question is how can I calculate or depict the number of dropped customers as they travel from most visited page (page B) to least visited page (page C) in Power BI:

 

Page NameNo. Dropped Customers
Page B 
Page A2 (4 in Page B - 2 in Page A)
Page D0  (2 in Page A - 2 in Page D)
Page C

1  (2 in Page D - 1 in Page C)

 

In other words, how can I visulaise the delta funnel?

 

Many thanks

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @hamadani 

As a workaround, you can  try the following steps to visulaise the delta funnel.

1. add a summarize table:
calculated table:

Table 2 = SUMMARIZE('Table','Table'[Page Name],"No.Unique Customers",DISTINCTCOUNT('Table'[Customer ID]))

calculatd column:

Rank = RANKX(ALLSELECTED('Table 2'),'Table 2'[No.Unique Customers],,DESC,Dense) 
Rankvalue = 
RANKX (
    'Table 2',
    'Table 2'[Rank]
        + RANKX ( 'Table 2', 'Table 2'[Page Name],, ASC, DENSE )
            / CALCULATE ( COUNTROWS ( 'Table 2' ), ALLSELECTED () ),
    ,
    ASC,
    DENSE
)
No.Dropped Customers = 
VAR a = 'Table 2'[No.Unique Customers]
VAR b =
    CALCULATE (
        MAX ( 'Table 2'[No.Unique Customers] ),
        FILTER (
            'Table 2',
            'Table 2'[Rankvalue]
                = EARLIER ( 'Table 2'[Rankvalue] ) - 1
        )
    )
RETURN
    IF ( ISBLANK ( b ), BLANK (), b - a )

2. consider using custom tooltip page to show the Dropped Customers.
Result:

veasonfmsft_0-1656657705663.png

Best Regards,
Community Support Team _ Eason

View solution in original post

1 REPLY 1
v-easonf-msft
Community Support
Community Support

Hi, @hamadani 

As a workaround, you can  try the following steps to visulaise the delta funnel.

1. add a summarize table:
calculated table:

Table 2 = SUMMARIZE('Table','Table'[Page Name],"No.Unique Customers",DISTINCTCOUNT('Table'[Customer ID]))

calculatd column:

Rank = RANKX(ALLSELECTED('Table 2'),'Table 2'[No.Unique Customers],,DESC,Dense) 
Rankvalue = 
RANKX (
    'Table 2',
    'Table 2'[Rank]
        + RANKX ( 'Table 2', 'Table 2'[Page Name],, ASC, DENSE )
            / CALCULATE ( COUNTROWS ( 'Table 2' ), ALLSELECTED () ),
    ,
    ASC,
    DENSE
)
No.Dropped Customers = 
VAR a = 'Table 2'[No.Unique Customers]
VAR b =
    CALCULATE (
        MAX ( 'Table 2'[No.Unique Customers] ),
        FILTER (
            'Table 2',
            'Table 2'[Rankvalue]
                = EARLIER ( 'Table 2'[Rankvalue] ) - 1
        )
    )
RETURN
    IF ( ISBLANK ( b ), BLANK (), b - a )

2. consider using custom tooltip page to show the Dropped Customers.
Result:

veasonfmsft_0-1656657705663.png

Best Regards,
Community Support Team _ Eason

Helpful resources

Announcements
Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors