Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.