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
gsksarepta
Helper II
Helper II

Delete or filter all rows except the latest row

Hi.. I have this table below and I would like to create a sub table with only the latest row in it based on date. Can I know how to do this in Power query or DAX? I could do individual measures to get latest value but it needs too many measures. Having the latest row helps in creating visuals and update automatically with latest numbers. Thank you in advance. 

gsksarepta_0-1668784423003.png

 

2 ACCEPTED SOLUTIONS
FreemanZ
Super User
Super User

try to create a new table with the code below:

Table = 

VAR _lastdate = MAX (Data[Date])

RETURN

CALCULATETABLE(

    Data,

    Data[Date]=_lastdate

)

 

Is it what you expect?

View solution in original post

speedramps
Super User
Super User

Hi

 

There are various ways to do this in Power Query or DAX 

but it is Froday and I feel lazy so let's try the quick and easy way ...

 

Create a blank report canvas.

Add your query will all data.

Add a table visual to your blank report canvas with all data.

Click on the table visual and expand the filter window.

clcik on date,

filter type = top n,

top = 1

by value = date

 

Yes! It is that easy 😎

speedramps_0-1668785655815.png

 

 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remember we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

View solution in original post

2 REPLIES 2
speedramps
Super User
Super User

Hi

 

There are various ways to do this in Power Query or DAX 

but it is Froday and I feel lazy so let's try the quick and easy way ...

 

Create a blank report canvas.

Add your query will all data.

Add a table visual to your blank report canvas with all data.

Click on the table visual and expand the filter window.

clcik on date,

filter type = top n,

top = 1

by value = date

 

Yes! It is that easy 😎

speedramps_0-1668785655815.png

 

 

Thanks for reaching out for help.

I put in a lot of effort to help you, now please quickly help me by giving kudos.

Remember we are unpaid volunteers and here to coach you with Power BI and DAX skills and techniques, not do the users job for them. So please click the thumbs up and accept as solution button. 

If you give someone a fish then you only give them one meal, but if you teach them how to fish then they can feed themselves and teach others for a lifetime.  I prefer to teach members on this forum techniques rather give full solutions and do their job. You can then adapt the technique for your solution, learn some DAX skills for next time and soon become a Power BI Super User like me. 

One question per ticket please. If you need to extend your request then please raise a new ticket.

You will get a quicker response and each volunteer solver will get the kudos they deserve. Thank you ! 

FreemanZ
Super User
Super User

try to create a new table with the code below:

Table = 

VAR _lastdate = MAX (Data[Date])

RETURN

CALCULATETABLE(

    Data,

    Data[Date]=_lastdate

)

 

Is it what you expect?

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.