Darren, thanks for the reply.
The querry in the OP executes successfully. It returns a list of the two SUMmed values per day.
What I am trying to accomplish is to generate a returned list where each row equates to the %on Time for that day.
6-3-2013, .96
6-4-2013, .95
etc.
However:
ExecuteSQL("Select
invoicedate, (sum(quantityontime) / sum(invoicequantity))
From ontimedeliverydetail
where invoicedate between '6/3/2013' and '6/30/2013'
group by invoicedate
";"";"")
yields a ?
Also as an FYI im editorilizing my query a bit for the sake of this discussion...I have a few custom function built to help me get out of a total literal string.