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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
91asma2
Helper I
Helper I

- Write DAX Formula to count number of Users with certain events

 
2 REPLIES 2
amitchandak
Super User
Super User

@91asma2 , Try to create measures like

for open

calculate(count(Table[Event_id]), filter(Table, Table[Event_type]="open registration"))

or
calculate(count(Table[Event_id]), filter(Table, Search("Open", Table[Event_type],,0) >0))

 

for close

calculate(count(Table[Event_id]), filter(Table, Table[Event_type]="Close registration"))

 

calculate(count(Table[Event_id]), filter(Table, Search("Close", Table[Event_type],,0) >0))

 

refer to my Beginer series: https://www.youtube.com/watch?v=wvsAzTqSDVg&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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