Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi, I have connected to an excel file and within the 1 sheet, there are 3 tables. Each month a new row is added to each table but the column headers always stay the same.
I only need to bring in the top table but in order to do this, I essentially need to say that from row where column1 = test errors and below, then exclude else keep.
any idea how to do this please?
How to get your question answered quickly.
Proud to be a Super User!
Hi,
This may be possible. Share the download link of an MS Excel file with some dummy data there.
Hello @M_SBS_6 ,
I suggest if you can seperate this table into another sheet and work clean from the source this would be much better, cleaner and simple.
and with excel its easy to do that.
Proud to be a Super User! | |
Hi @M_SBS_6,
Unfurtunelly we don´t have a sample data to teste, but please try it:
Input Steps
# Add an index column
= Table.AddIndexColumn(PreviousStep, "Index", 0, 1, Int64.Type)
# Find the position of the row where Column1 = "test errors":
Position = Table.PositionOf(PreviousStep, [Column1 = "test errors"])
# Skip all rows above that position:
= Table.Skip(PreviousStep, Position)
If this response was helpful in any way, I’d gladly accept a 👍much like the joy of seeing a DAX measure work first time without needing another FILTER.
Please mark it as the correct solution. It helps other community members find their way faster (and saves them from another endless loop 🌀.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 64 | |
| 50 | |
| 45 |