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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
pokdbz
Helper II
Helper II

LastNonBlank formula help

I need to get the total for the Count of Last Status = "Completed" per store

 

Result

Store 2 = 3

Store 3 = 1

 

 

Here is how the data is setup

Store                Role                   Status

2                       Bakery               In Progress

2                       Bakery               Completed

2                       Seafood            Completed

2                       Deli                   Completed

2                       Meat                 In Progress

3                       Bakery               Completed

3                       Deli                    In Progress

 

This gets me the last status.  But I'm not sure how to get it to count only the Completed.

 

xmeasure =
        LASTNONBLANK
        (
            'StoreTasks'[Status],
            'StoreTasks'[Status] IN { "Completed" }
        )
1 ACCEPTED SOLUTION

Hi @pokdbz,

 

I'm afraid you can't find the last status with that formula. Please refer to lastnonblank-function-dax.

LastStatusText =
LASTNONBLANK ( 'StoreTasks'[Status], 
'StoreTasks'[Status] IN { "Completed" }  // it returns true or false, which never be a blank.
)

Let's take the Store 0002 and the role Bakery as an example, the last status always "Completed". What should it be?

Last-Non-Blank-formula-help3

 

If you are sure you did it in the right way, please try this formula to get the result.

Measure =
SUMX (
    SUMMARIZE (
        StoreTasks,
        StoreTasks[Role],
        [StoreNumber],
        "Status", [LastStatusText]
    ),
    IF ( [Status] = "Completed", 1, 0 )
)

Last-Non-Blank-formula-help4

 

 

Best Regards,

Community Support Team _ Dale
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

12 REPLIES 12

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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