SDRichardC
Technical User
I have created a query table and want to count the distinct or unique number in the table-row. I have found some sort of a solution but it is not working for me.
The solution was to use sub-queries in SQL statements nested with two other sub-queries. My data in the table row is called Order a numeric data type. Say I have order number
1001, 1002, 1001, 1003 in each row field. I want to count the unique numbers totaling 1001 = 1 and 1002 = 1 and 1003 = 1. How do I go about creating the criteria? Thank you.
The solution was to use sub-queries in SQL statements nested with two other sub-queries. My data in the table row is called Order a numeric data type. Say I have order number
1001, 1002, 1001, 1003 in each row field. I want to count the unique numbers totaling 1001 = 1 and 1002 = 1 and 1003 = 1. How do I go about creating the criteria? Thank you.