Return the index of the first row where the column values match the passed list, or -1 if the values are not found
The list of paired values, column name or index then value.
1 2 | Debug.Print FindValue( "CategoryID" , 2, "UnitPrice" , 10) -> 3 Debug.Print FindValue( "CategoryID" , 25) -> -1 |