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.
Hello,
I'm new to Power BI/DAX. I need to create a column on my table to show the percentage of the New Sales column compared to the salesperson's Quota column (see pic), their % Achievement . For example, with the below picture, the % Achievement for the for the first 2 lines would be 0% and 5% respectively.
These columns are each from separate Salesforce Reports, if that matters.
Any ideas for how to get this to work would be appreciated.
Thank you!
Solved! Go to Solution.
hi @A-Rae
try to
1)create a measure with this code:
To create a column that shows the percentage of New Sales compared to the salesperson's Quota in DAX, you can use the following formula:
New Sales % = DIVIDE(New Sales, Quota)
This formula will divide the New Sales column by the Quota column and return the result as a decimal value. To convert the decimal value to a percentage, you can multiply the result by 100 and add the % symbol.
Here is an example of how the formula could be used in DAX:
New Sales % = FORMAT(New Sales / Quota, "0.00%")
This formula will divide the New Sales column by the Quota column, format the result as a percentage with two decimal places, and add the % symbol.
Please note that the exact syntax and names of the columns and functions may vary depending on your specific data set and Power BI configuration.
Hi @A-Rae
Please share some sample data and expectd output.
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 @A-Rae
try to
1)create a measure with this code:
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
9 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |