Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Folks,
I'm trying to build a funnel chart, but the requirement is bit specific. Let me explain the requirement.
Following are the different Funnels steps:
Step 1: "Access Step": It's the first step to check whether the user has the access to the portal.
Step 2: "Check New User Step": This step checks how many new users have joined the portal. However, the new users will come from the first step i.e. 2nd step becomes the subset of the first step.
Step 3: "Home Page Interaction": The 3rd step is see how many new users interacted with the home page. Again, the users in this step should come from 2nd step.
I can get the distinct user count for the first step using the following DAX statement.
Check New User Step = CALCULATE(
DISTINCTCOUNT('Bookings Funnel Data_RAW'[UserId]),
FILTER(
'Bookings Funnel Data_RAW',
'Bookings Funnel Data_RAW'[EventName] = "NewUserEvent" && // Replace "NewUserEvent" with the actual event name for new users
'Bookings Funnel Data_RAW'[UserId] IN VALUES('Bookings Funnel Data_RAW'[UserId])
)
)
This solution worked for the 2nd Step. Thanks!
Hi @Anonymous
The following DAX may help you solve your problem:
Step 1: Access Step
You’ve already defined this measure:
Access Step = CALCULATE(
DISTINCTCOUNT('Bookings Funnel Data_RAW'[UserId]),
FILTER(
'Bookings Funnel Data_RAW',
'Bookings Funnel Data_RAW'[EventName] IN {
"HasPersonalAccessNotSharedAccess",
"SharedAndPersonalBookingsAccessible",
"HasSharedAccessNotPersonalAccess"
}
)
)
Step 2: Check New User Step:
Check New User Step = CALCULATE(
DISTINCTCOUNT('Bookings Funnel Data_RAW'[UserId]),
FILTER(
'Bookings Funnel Data_RAW',
'Bookings Funnel Data_RAW'[EventName] = "NewUserEvent" && // Replace "NewUserEvent" with the actual event name for new users
'Bookings Funnel Data_RAW'[UserId] IN VALUES('Bookings Funnel Data_RAW'[UserId])
),
'Bookings Funnel Data_RAW'[EventName] IN {
"HasPersonalAccessNotSharedAccess",
"SharedAndPersonalBookingsAccessible",
"HasSharedAccessNotPersonalAccess"
}
)
Step 3: Home Page Interaction:
Home Page Interaction = CALCULATE(
DISTINCTCOUNT('Bookings Funnel Data_RAW'[UserId]),
FILTER(
'Bookings Funnel Data_RAW',
'Bookings Funnel Data_RAW'[EventName] = "HomePageInteractionEvent" && // Replace with the actual event name for home page interactions
'Bookings Funnel Data_RAW'[UserId] IN VALUES('Bookings Funnel Data_RAW'[UserId])
),
'Bookings Funnel Data_RAW'[EventName] = "NewUserEvent" // Assuming continuity from the New User step
)
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
17 | |
7 | |
7 | |
6 | |
5 |
User | Count |
---|---|
22 | |
10 | |
10 | |
9 | |
7 |