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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
MarioCadena
Helper II
Helper II

How to exclude blank values in a summarize table

Good morning Community,

 

I have a dataset that contains changes of dates for items,

MarioCadena_0-1630634852360.png

I have created a summarize table that contains the earliest and latest dates based on the updated date column.
When working on "Ready to Ship" column, I am using the following

"Earliest RTS",
CALCULATE (
MIN( 'Active Orders'[Ready to Ship]),
FILTER (
ALL ( 'Active Orders'[Update Date] ),
'Active Orders'[Update Date] = MIN ( 'Active Orders'[Update Date] )
)
),
but I get the blank value.
 
Do you know how I can ignore the blank values.
 
Thank you



1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @MarioCadena ;

Since I am not very clear about your table structure and the result you want to output, I have tested it according to your DAX and can try to change it to:

Earliest RTS =
CALCULATE (
    MIN ( 'Active Orders'[Ready to Ship] ),
    FILTER (
        'Active Orders',
        [Update date]
            = CALCULATE (
                MIN ( [Update date] ),
                FILTER ( 'Active Orders', [Ready to Ship] > BLANK () )
            )))

The final output is shown below:

vyalanwumsft_0-1630916703733.png


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.

View solution in original post

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi, @MarioCadena ;

Since I am not very clear about your table structure and the result you want to output, I have tested it according to your DAX and can try to change it to:

Earliest RTS =
CALCULATE (
    MIN ( 'Active Orders'[Ready to Ship] ),
    FILTER (
        'Active Orders',
        [Update date]
            = CALCULATE (
                MIN ( [Update date] ),
                FILTER ( 'Active Orders', [Ready to Ship] > BLANK () )
            )))

The final output is shown below:

vyalanwumsft_0-1630916703733.png


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.

Ashish_Mathur
Super User
Super User

Hi,

Share some data, describe the question and show the expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
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.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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