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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Separate column wise Percentage based on the booking status count

Hi Everyone ,

 

I have the data set like the below 

 

Booking status                   Date         

Confirmed                        April - 2022

Confirmed                        April - 2022

Not Confirmed                 April - 2022

Amended                         April - 2022

Amended                         April - 2022

Amended                         April - 2022

Confirmed                        April - 2022

Confirmed                        May - 2022

Not Confirmed                 May - 2022

Amended                         May - 2022

Amended                         May - 2022

Amended                         May - 2022

 

How to get seperate Month column wise total percentage  ?

plese find the attached Screen shot

THENNA_41_0-1665398247395.png

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Anonymous,

What fields that you used to design the chart? Can you please share some more detail about these?

How to Get Your Question Answered Quickly  

You can also try to use the following measure formula if helps:

Overall Percent by status type=
DIVIDE (
    CALCULATE (
        COUNT ( Table[Booking status] ),
        ALLSELECTED ( Table ),
        VALUES ( Table[Date] ),
        VALUES ( Table[Booking status] )
    ),
    CALCULATE (
        COUNT ( Table[Booking status] ),
        ALLSELECTED ( Table ),
        VALUES ( Table[Booking status] )
    )
)

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Anonymous  Thank you so much  its working 

Anonymous
Not applicable

HI @Anonymous,

What fields that you used to design the chart? Can you please share some more detail about these?

How to Get Your Question Answered Quickly  

You can also try to use the following measure formula if helps:

Overall Percent by status type=
DIVIDE (
    CALCULATE (
        COUNT ( Table[Booking status] ),
        ALLSELECTED ( Table ),
        VALUES ( Table[Date] ),
        VALUES ( Table[Booking status] )
    ),
    CALCULATE (
        COUNT ( Table[Booking status] ),
        ALLSELECTED ( Table ),
        VALUES ( Table[Booking status] )
    )
)

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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