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, I have this measure
Solved! Go to Solution.
Hi @Justas4478 ,
Thank you @Uzi2019 for your prompt reply, I have created a sample data for you to help you solve your problem. You can follow the steps below:
Sample data:
1.Add a new column:
%Not Fulfilment =
VAR _All = 1 - ( 'Outbound Delivery'[Total Actual] / 'Outbound Delivery'[Total Demand] )
RETURN
IF (
'Outbound Delivery'[Total Actual] = BLANK ()
|| 'Outbound Delivery'[Total Demand] = BLANK (),
BLANK (),
_All
)
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Justas4478 ,
Thank you @Uzi2019 for your prompt reply, I have created a sample data for you to help you solve your problem. You can follow the steps below:
Sample data:
1.Add a new column:
%Not Fulfilment =
VAR _All = 1 - ( 'Outbound Delivery'[Total Actual] / 'Outbound Delivery'[Total Demand] )
RETURN
IF (
'Outbound Delivery'[Total Actual] = BLANK ()
|| 'Outbound Delivery'[Total Demand] = BLANK (),
BLANK (),
_All
)
Final output:
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Hi, it works.
Thank you for the solution.
Would it be possible to explain how the measure works if its not to much to ask?
Hi @Justas4478 ,
Sure, I would be happy to answer that for you. As the result of the calculation will include the blank values in the data as well. You can remove the blank data after listing the equation to eliminate its effect on the result.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Thank you for explaining and the help.
Hi @Justas4478
Just try to modify your measure for not fulfilment
%Not Fulfilment = 1- ('Outbound Delivery'[Total Actual]/'Outbound Delivery'[Total Demand])
I hope this what you are trying to achieved.
@Uzi2019 Hi, I tried your solution and it has same problem as other solutions that I tried.
It as well calculates for rows that do not have any data which is what I am trying to prevent.
I would hope end result would look like this but data in the red circle would be that 1.5% data.
@Uzi2019 I tied to filter out blank values but that only partialy helps.
It does not filter out if there is even one value in day column
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 |
|---|---|
| 28 | |
| 23 | |
| 22 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 60 | |
| 35 | |
| 28 | |
| 22 | |
| 21 |