Looking at your test report (HTML), I see that your query is asking for the 62nd entry in the table; however, the table only has 24 rows. This is why the query is not working.
It looks like you're looking for the average CPU utilization for something specific. If you can identify exactly what you're searching for in this response, we can help you write the query to extract this information regardless of the table size.
Ah, that makes sense. I assume that removing the parameter will make it so that iTest will parse the entire column? I need each row to be tested.
You are correct. If you remove the "[62]" you'll get a list of the values (which is the entire column) in the table. I see from your test case, that you have set the Processor Properties in your assert to "Analyze each separately". This should test each value individually and provide a pass/fail for each. If you do not need to know which pass and which do not, but do to fail the test if at least one of this is not correct, you can use "True if All True". There are more options if you look at the "Processor Properties" for "When multiple matches:". To find this, first click on the "assert" step, then click on "Processor Properties" at the bottom left of the editor window.
No one has followed this question yet.