Forum Discussion

oslcmb's avatar
oslcmb
New Member
3 years ago
Solved

Expression.Error: The index cannot be negative.

I have been using this query for some time now, but suddenly it throws up the following error when I am trying to run it:    Expression.Error: The index cannot be negative. Details: Value=[List] ...
  • edhans's avatar
    3 years ago

    List.PositionOf() returns -1 if the thing you are looking for isn't found. So either Record ID, Associated Contact or Associated Company ID isn't being found.

     

    Note that Power Query is case sensitive, so you might have "RECORD ID" or "record ID" or "Record Id" and that doesn't count if you are searching for "Record ID"

    If case sensitivity is the issue, then change your Text.Contains() functions to:

    Text.Contains(Text.Lower(_), "record id")

     

    That will convert whatever is coming in to lower case and you compare against that.