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
npust333
New Member

Dynamically use IF statement to update a variable

Hello,

I have a use case that I would like some help with

Every period, I will receive a PDF statement, and my task is to extract the content of that PDF and populate it to Excel.

The problem is, sometimes there might be slight deviation in the PDF statement after I initially read it using power query, for example

 

Variation 1

Column1Column2Column3Column4
xxxxxxxx
xxxxxxxx
xxxxxxxx
NameDateClassCategory
abc1-Janxyzdd

 

Variation 2

Column1Column2Column3Column4Column 5
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
xxNameDateClassCategory
abcabc1-Janxyzdd

 

What I need is to find the position of the row with value "Name", and then delete whatever rows are above them.

Is there a way in power query to use an IF statement to update a variable?

For example,

If I read "column1" for any value with "Name", I wouldn't find it and it will get the position of -1. If such case, then I want power query to find row with "Name" on "column2".

 

Thank you

1 ACCEPTED SOLUTION

    pos = List.PositionOf(
        Table.ToRows(Source),
        "Name",
        Occurrence.First, 
        (x, y) => List.Contains(x, y)
    )

finds first occurrence of "Name" in ANY column. If you really want narrow your search by first 2 columns (and make it less dynamic) then make this change in the code: List.Contains(List.FirstN(x, 2), y)

View solution in original post

5 REPLIES 5
dufoq3
Super User
Super User

Hi @npust333, different approach here.

 

Before

dufoq3_0-1714736907934.png

 

After (add the code as a new step and replace Source with your previous step reference)

dufoq3_3-1714737045972.png

 

Table.Skip(Source, each not List.Contains(Record.ToList(_), "Name"))

 

Whole code with sample data

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WqqhQ0sFCxOpQJOWXmJsKpFwSS0CUc05icTGIBnLT84sqweoSk5KBQhDSUNcrMQ9kRGUVkExJUYqNBQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t, Column4 = _t, Column5 = _t]),
    #"Removed Top Rows" = Table.Skip(Source, each not List.Contains(Record.ToList(_), "Name"))
in
    #"Removed Top Rows"

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

AlienSx
Super User
Super User

    pos = List.PositionOf(
        Table.ToRows(your_table),
        {"Name", "Date", "Class", "Category"},
        Occurrence.First, 
        (x, y) => List.ContainsAll(x, y)
    )

Hi @AlienSx , thanks for the answer.

Is there a way to make it dynamic as we don't know how many columns will be there?

 

One pattern i notice from the files i received is that the "Name" value that i will look at is either in column1 or column 2 only, so the search can be reduced to only that scope

    pos = List.PositionOf(
        Table.ToRows(Source),
        "Name",
        Occurrence.First, 
        (x, y) => List.Contains(x, y)
    )

finds first occurrence of "Name" in ANY column. If you really want narrow your search by first 2 columns (and make it less dynamic) then make this change in the code: List.Contains(List.FirstN(x, 2), y)

Thank you @AlienSx 

It worked

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