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
Hi good day, can anyone help me on my measure. What i required is if the result is morethan 1 on my %completed then equal to 1 else %completed
Solved! Go to Solution.
hello @AllanBerces
you can use if statement.
here is an example. Divide21 is measure2 divided by measured1 which is over than 1.
add if statement to define value over 1 then you can get divide21 becomes 1.
Hope this will help.
Thank you.
Hi,
As per our understanding, you’re attempted the calculating the percentage is greater than 1 (100%), it should return 1, otherwise it should return the actual %Completed value.
You can update your measure like this:
%Completed_ =
MIN(
DIVIDE([measure01], [measure02]),
1
)
Explanation:
This will cap your completion percentage at 100%, which is commonly used in progress or completion metrics.
Hope this helps
Thanks!
%Completed_ =
IF([measure01]/[measure02] > 1, 1, [measure01]/[measure02])
If this answer helped, please click 👍 or Accept as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande
%Completed_ =
IF([measure01]/[measure02] > 1, 1, [measure01]/[measure02])
If this answer helped, please click 👍 or Accept as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande
Hi,
As per our understanding, you’re attempted the calculating the percentage is greater than 1 (100%), it should return 1, otherwise it should return the actual %Completed value.
You can update your measure like this:
%Completed_ =
MIN(
DIVIDE([measure01], [measure02]),
1
)
Explanation:
This will cap your completion percentage at 100%, which is commonly used in progress or completion metrics.
Hope this helps
Thanks!
hello @AllanBerces
you can use if statement.
here is an example. Divide21 is measure2 divided by measured1 which is over than 1.
add if statement to define value over 1 then you can get divide21 becomes 1.
Hope this will help.
Thank you.
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 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 37 | |
| 32 | |
| 25 | |
| 23 |