example: Lets say you had an excel sheet with a roster of players (and columns called LastName, Position, etc), and you wanted to select the first player alphabetically with a specific position.. You would use an SQL query something like this and configure the datalinq fields as such:
`Column = LastName
Row = 1
Table = SELECT * FROM ROSTER WHERE [Position]=%position% ORDER BY [LastName]
`
Then you could set the position datalinq key to QB to select the first quarterback..
#XPression