This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello ,
I have the below table, Offers, Accepted and Rejected are count from a field
| Date Initiated | Candidate Name | Accepted / Declined | Project / Office | Division | Location | Hiring Source | Recruiter | Accepted / Declined Date | Position | |
| 44200 | Rami Bashir | Accepted | Crown Tower | HR | Qatar | Website | Tomy | 44206 | Senior Resident Engineer | |
| 44200 | Eswara | Accepted | bridge | Finance | Abu Dhabi | Ralf | 44201 | Planning Engineer | ||
| 44200 | Owhigho | Accepted | bridge | IT | Qatar | Gulf Talent | Mathew | 44200 | Safety Officer | |
| 44201 | Udovicic | Accepted | bridge | Sales | Dubai | Employee Referral | Gordon | 44230 | Senior Interior Designer |
offers is count and others are messures created with dax function
I would like to add a coulmn named conversion percentage to calculate the persentage of acceptance how do i do this?
Hi, @Anonymous ;
Is your problem solved?? If so, Would you mind accept the helpful replies as solutions? Then we are able to close the thread. More people who have the same requirement will find the solution quickly and benefit here. Thank you.
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, @Anonymous ;
Please try it.
percent =
VAR _offers =
CALCULATE ( COUNTROWS ( 'Table' ), ALLEXCEPT ( 'Table', 'Table'[offers] ) )
RETURN
DIVIDE ( [Accepeted], _offers + [Accepeted] + [Rejected] + [Other] )
If not, can you share more details and your detailed logic and desired output ?
The most important parts are:
1. Sample data as text or screenshots.
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
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.
@Anonymous , Not very clear, but a measure like
Divide(count(Table[offers]), count(Table[offers]) +[Accepeted]+[Rejected]+[Other])
Assuming last three are measures
or
Can you share sample data and sample output in table format?
Hello Amit,
for some reason I am getting the 1 as the output from the mesure created as you advised.
I have updated the table as advised, Please see the original post.
Check out the April 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 |
|---|---|
| 35 | |
| 26 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 65 | |
| 35 | |
| 32 | |
| 25 | |
| 23 |