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.
I am trying to find the country percentage based on the Delay count . I
Country DelayHour
Italy 1
Italy 4
Italy 3
France 5
France 2
Spain 1
Solved! Go to Solution.
Hi @Anonymous
Thanks for reaching out to us.
the results of COUNT('Booking Acceptance'[Dealy in HRS]) and [Delay hour] are same,
please try this,
Percentage =
var _count= CALCULATE(COUNTROWS('Booking Acceptance'),ALL('Booking Acceptance'))
var _delay= [Delay hour]
return DIVIDE(_count,_delay,0)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Thanks for reaching out to us.
the results of COUNT('Booking Acceptance'[Dealy in HRS]) and [Delay hour] are same,
please try this,
Percentage =
var _count= CALCULATE(COUNTROWS('Booking Acceptance'),ALL('Booking Acceptance'))
var _delay= [Delay hour]
return DIVIDE(_count,_delay,0)
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Try like
Delay hour = CALCULATE ( COUNT ( 'Booking Acceptance'[Dealy in HRS] ), filter(allselected('Booking Acceptance'), 'Booking Acceptance'[Country] = max('Booking Acceptance'[Country]) ))
or
Delay hour = CALCULATE ( COUNT ( 'Booking Acceptance'[Dealy in HRS] ), filter(all('Booking Acceptance'), 'Booking Acceptance'[Country] = max('Booking Acceptance'[Country]) ))
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@amitchandak sir i have tired this method when i convert to Percentage not showing correct value . i have added sample test file for your reference . https://drive.google.com/file/d/1q5Q6cnr32qu60415R87FfzIlxqFSr8uh/view?usp=sharing
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 |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |