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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
joey
New Member

How to extract 30% of records from a table?

Hi all,

 

I have a table with 860 rows. I need to extract 30% of the records from a table.

May I know how to do it in power query?

 

Thanks!

2 ACCEPTED SOLUTIONS
jbwtp
Memorable Member
Memorable Member

= Table.FirstN(Source, Number.Round(Table.RowCount(Source)*0.3))

View solution in original post

Thanks@jbwtp . It does work.

View solution in original post

8 REPLIES 8
AlexisOlson
Super User
Super User

If you want to sample not just the first rows, then there are a variety of methods available. One example is to select the first three out of every 10 rows. You can do this by adding an index column (from 0) and then filtering like this:

= Table.SelectRows(#"Added Index", each Number.Mod([Index], 10) < 3 )

 This returns rows {0,1,2, 10,11,12, 20,21,22, 30,31,32,..., 870,871,872}.

jbwtp
Memorable Member
Memorable Member

= Table.FirstN(Source, Number.Round(Table.RowCount(Source)*0.3))

@jbwtp 

 

I need another help here..

 

The number of records to be extracted will change based on the sum of another tables/query. It will change dynamically. How does the replace the 0.3 to dynamic function integrated?

 

Thanks@jbwtp . It does work.

Greg_Deckler
Community Champion
Community Champion

@joey Add an Index column. Filter the Index column for <= 258



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@grey_Deckler

 

Thank you for your suggestion on filtering the Index column for <= 258. However, I need another help here.  

 

The number of records that I need to extract will change based on the sum of another table or query. How can I dynamically change the number 258?

Hi @joeywong,

 

This would be:

= Table.FirstN(Source, Number.Round( AnotherQueryName * 0.3 ))

Assuming that AnotherQueryName is a query retunring a desired number of rows to extract.

 

Cheers,

John

jbwtp
Memorable Member
Memorable Member

Hi @joeywong,

 

Sorry, addressing your earlier quesiton, which I missed.

 

= Table.FirstN(Source, Number.Round( AnotherQueryName * PercentOfRows ))

 

Where PercentOfRows is the variable which contains the share of rows you want to slice.

 

Cheers,

John

I think you can guess 🙂 that it would be something like this:

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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.

Top Solution Authors
Top Kudoed Authors