I'm sure there is a really simple solution for this matter, but I have tried all I know without success.
I'm trying to modify this working SQL string to yield only the Top 25 results, not all results.
"SELECT * FROM" & "data.CSV" & "ORDER BY " & "Elapsed" & " DESC "*
For the Top 25 SQL syntax I have tested:
"SELECT TOP 25 FROM " & "data.CSV" & " ORDER BY " & "Elapsed" & " DESC "
"SELECT TOP 25 * FROM " & "data.CSV" & "ORDER BY " & "ELAPSED" & DESC "
"SELECT TOP 25" & " ORDER BY " & "ELAPSED" & " DESC " & FROM" & " data.CSV"
None of these three produce any results from the 45 line data file. No errors indicated, all compile.*
Any advice appreciated.