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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
deb_power123
Helper V
Helper V

DAX to calculate the count of the flags

Hi All,

I have a table named student with columns DateBooked,ParticipantName and NoBookingCheckFlag. This data is corresponding to the students reservation for a school program.

 

The Date Booked column shows the booking date of the ticket,ParticipantName is the name of the student and NoBookingCheckFlag column shows those students who attended the program without reservation so if the flag is set to Yes then they attended the program without reservation and if flag is set to No the students attended the program with reservation.

 

Expected results :

I need to create a calculated measure column to find the remaining columns OverAllCount(with/without reservation,count(with reservation) and  %ge ratio corresponding to the respective booking dates. 

 

% age ratio = 1- count(with reservation)/OverallCount(with/without reservation)

Can you please suggest suitable DAX to handle the expected results?

 

Input source :

Date

Booked

Participant

Name

 NoBookingCheckFlag OverallAllCount(with/withoutreservation)Count(WithReservation)%geRatio
15.09.2021Tom       Yes   
16.09.2021Tom       Yes   
15.09.2021John       Yes   
16.09.2021John       No   
20.09.2021Mary       Yes   
21.09.2021Mary       No   
17.09.2021Mary       No   
13.09.2021Elizabeth      Yes   
14.09.2021Elizabeth      Yes   
09.09.2021Mario      Yes   
10.09.2021Mario      Yes   
17.09.2021Mario      No   
20.09.2021Mario      No   
21.09.2021Mario     Yes   

 

Kind regards

Sameer

1 ACCEPTED SOLUTION
goncalogeraldes
Super User
Super User

Hello there @deb_power123 ! If I understood your problem correctly, this is what you want:

Count (with reservation) =
CALCULATE(
COUNTROWS(Table),
Table[NoBookingCheckFlag] = "No")

OverallCount =
COUNT(Table[NoBookingCheckFlag])

% age ratio = 1 - DIVIDE( Count (with reservation), OverallCount)

As a side note, calculated measure column does not exist in PBI terminology since calculated column <> measure. Check out this link on the differences between both calculations.

 

Hope this answer solves your problem! If you need any additional help please @ me in your reply.
If my reply provided you with a solution, pleased mark it as a solution ✔️ or give it a kudoe 👍
Thanks!

You can also check out my LinkedIn!

Best regards,
Gonçalo Geraldes

View solution in original post

3 REPLIES 3
goncalogeraldes
Super User
Super User

Hello there @deb_power123 ! If I understood your problem correctly, this is what you want:

Count (with reservation) =
CALCULATE(
COUNTROWS(Table),
Table[NoBookingCheckFlag] = "No")

OverallCount =
COUNT(Table[NoBookingCheckFlag])

% age ratio = 1 - DIVIDE( Count (with reservation), OverallCount)

As a side note, calculated measure column does not exist in PBI terminology since calculated column <> measure. Check out this link on the differences between both calculations.

 

Hope this answer solves your problem! If you need any additional help please @ me in your reply.
If my reply provided you with a solution, pleased mark it as a solution ✔️ or give it a kudoe 👍
Thanks!

You can also check out my LinkedIn!

Best regards,
Gonçalo Geraldes

It worked

Tanushree_Kapse
Impactful Individual
Impactful Individual

Hi @deb_power123 ,

 

Please use below measures:

 

OverAllCount(with/without reservation)= COUNT(NoBookingCheckFlag)

Count(with reservation)= CALCULATE(COUNT(NoBookingCheckFlag), Table(NoBookingCheckFlag)= "No")

 %ge ratio= 1- DIVIDE(Count(with reservation), OverAllCount(with/without reservation))

 

 

Mark this as a solution if I answered your question.

Thanks.

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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