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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Get latest not null value for similar row with condition

Hi,

 

I would like to get the latest not null value of a column with some condition
Here is an example of my database

 

nametypeexecutionresultticketdatejob_id
aaaOOBEInternalPass 01/01/20001
bbbOOBEInternalPass 01/01/20001
aaaOOBEInternalFailA-50301/02/20002
bbbOOBEInternalPass 01/02/20002
....................
aaaOOBEInternalFail 01/05/20003
bbbOOBEInternalFail A-505

01/05/2000

3

aaaOOBEInternalPass 01/05/20004

 

I would like if the test is still fail in the following day, to get the latest ticket for the same name, type and execution. 
An exanple of what I expect:

nametypeexecutionresultticketdatejob_id
aaaOOBEInternalPass 01/01/20001
bbbOOBEInternalPass 01/01/20001
aaaOOBEInternalFail A-50301/02/20002
bbbOOBEInternalPass 01/02/20002
aaaOOBEInternalFail A-50301/05/20003
bbbOOBEInternalPass A-50501/05/20003
aaaOOBEInternalPass 01/05/20004

 

Also, as you can see in the expected result. If the result become "Pass" the ticket should not be added. What it mean for me. Is that I should only get the latest not null value of ticket that was fail. If the latest result was pass. We should not take the ticket in consideration. 

 

I hope my topic is clear. If anyone need more explanation, do not hesitate !

 

Best regards

Steph

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Anonymous ,

Do you mean to summary your records and only show the last records who have a ticket number? If this is a case, you can try to use the following DAX formula to get a summarized table.

Table =
SUMMARIZE (
    FILTER ( Table, [Ticket] <> BLANK () ),
    [job_id],
    [Date],
    [Name],
    [Type],
    [execution],
    "ticket", MAX ( Table[ticket] )
)

Notice: Your ticket column seems like text type, it is hard to find out first/last text value, I'd like to suggest extract numeric value to a new column and apply max function on new column to get last value.

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

HI @Anonymous ,

Do you mean to summary your records and only show the last records who have a ticket number? If this is a case, you can try to use the following DAX formula to get a summarized table.

Table =
SUMMARIZE (
    FILTER ( Table, [Ticket] <> BLANK () ),
    [job_id],
    [Date],
    [Name],
    [Type],
    [execution],
    "ticket", MAX ( Table[ticket] )
)

Notice: Your ticket column seems like text type, it is hard to find out first/last text value, I'd like to suggest extract numeric value to a new column and apply max function on new column to get last value.

Regards,

Xiaoxin Sheng

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.