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
6DiegoDiego9
Helper I
Helper I

Scroll to the 800000th row in Power Query Editor

The following M line is (wrongly) not cutting any row at the end of my source with about 800000 rows: 
= Table.FirstN(#"Trimma il ""1"" finale dalle instestazioni",each List.NonNullCount(Record.ToList(_))>0)

I need to see the last rows of my source to understand what's wrong (what changed...) in my source.

 

How can I do?

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

1. Go to Transform tab - Reverse Rows

This will put your last rows on top and you can do the analysis.

After your analysis is over, then delete the Reverse Rows step.

 

2. Another way is issue this statement

=Table.LastN(#"Your previous step",10)

10 means that it will display your last 10 rows. You can replace 10 with whatever no.

 

3. Another way is insert an Index column. Then you can filter on this Index. 

 

View solution in original post

1 REPLY 1
Vijay_A_Verma
Super User
Super User

1. Go to Transform tab - Reverse Rows

This will put your last rows on top and you can do the analysis.

After your analysis is over, then delete the Reverse Rows step.

 

2. Another way is issue this statement

=Table.LastN(#"Your previous step",10)

10 means that it will display your last 10 rows. You can replace 10 with whatever no.

 

3. Another way is insert an Index column. Then you can filter on this Index. 

 

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.

Top Solution Authors
Top Kudoed Authors