Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Kareus
Helper I
Helper I

Formula Help

How can I determine if all the rows that share a particular order # have inventory to ship Order #400001 complete.

 

Report DateOrder #Scheduled DateDescriptionInventoryItems NeededIs Their Enough Inventory On Hand To Ship Order CompleteWHICH ORDER NUMBERS
11/7/202040000011/7/2020Widget #1100025YES 
11/7/202040000111/7/2020Widget #1100020YES 
11/7/202040000111/7/2020Widget #224FALSE 
11/7/202040000111/7/2020Widget #35511YES 
11/7/202040000211/7/2020Widget #35513YES 
1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

Here is a column you can put on your orders table to indicate if there is sufficient inventory for each item.  It also works as a measure expression that will work in a table visual with the Order # column.

 

Enough =
IF (
    ISBLANK (
        CALCULATE (
            COUNT ( Orders[Order #] ),
            FILTER (
                ALLEXCEPT (
                    Orders,
                    Orders[Order #]
                ),
                Orders[Inventory] < Orders[Items Needed]
            )
        )
    ),
    "Y",
    "N"
)

 

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

1 REPLY 1
mahoneypat
Microsoft Employee
Microsoft Employee

Here is a column you can put on your orders table to indicate if there is sufficient inventory for each item.  It also works as a measure expression that will work in a table visual with the Order # column.

 

Enough =
IF (
    ISBLANK (
        CALCULATE (
            COUNT ( Orders[Order #] ),
            FILTER (
                ALLEXCEPT (
                    Orders,
                    Orders[Order #]
                ),
                Orders[Inventory] < Orders[Items Needed]
            )
        )
    ),
    "Y",
    "N"
)

 

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.