This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I am currently working on a formula to count the number of ratings that are >=2 and divide it against the number of applicants per store:
Qualified candidates =
VAR __BASELINE_VALUE =
CALCULATE(
COUNTA('Application Report'[Average rating]),
'Application Report'[Average rating] >=2
)
VAR __MEASURE_VALUE = sum('Job Report'[Number of Applications])
RETURN
DIVIDE( __BASELINE_VALUE,__MEASURE_VALUE )
DATA:
Application Report:
| Store | Average Rating |
| 702 | 3.00 |
| 702 | 2.50 |
104 | 3.00 |
104 | 1.50 |
705 | 1.00 |
Job Report:
| Store | Number of Applications |
| 702 | 45 |
| 705 | 25 |
| 104 | 30 |
Unfortunately, I couldn't find a way to count them and be able to filter them per store.
I hope it makes sense.
Thanks for your support.
Solved! Go to Solution.
Hi, @alexcatala ;
Hi, @alexcatala ;
Try it.
Qualified candidates =
VAR __BASELINE_VALUE =
CALCULATE (
SUM( 'Application Report'[Average rating] ),FILTER('Application Report',
[Average rating] >= 2))
VAR __MEASURE_VALUE =
SUM ( 'Job Report'[Number of Applications] )
RETURN
DIVIDE ( __BASELINE_VALUE, __MEASURE_VALUE )
The final show:
or can you share desired result, which could let me understand your logic?
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @alexcatala ;
Hi, @alexcatala ;
Try it.
Qualified candidates =
VAR __BASELINE_VALUE =
CALCULATE (
SUM( 'Application Report'[Average rating] ),FILTER('Application Report',
[Average rating] >= 2))
VAR __MEASURE_VALUE =
SUM ( 'Job Report'[Number of Applications] )
RETURN
DIVIDE ( __BASELINE_VALUE, __MEASURE_VALUE )
The final show:
or can you share desired result, which could let me understand your logic?
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @amitchandak ,
I have already a common table, such as a store and data table.
What I need is a formula to give me the percentage of the average rating bigger than 2 divided with the number of applicants.
I have tried with the If formula but only 1 option can be given and I need all numbers from 2 to 5 to be included.
I used it before to filter a specific value ( text) but now I need to filter several values (whole number).
Any advice?
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 23 | |
| 18 |