Good morning all - I have a dataset that consists of rows of case related data (the data is from a CRM system). I would like to create a second dataset that contains the SQL equivalent of this:
select count(*), manager, priority from table group by manager, priority In other words, I need to know how I can count rows from a dataset based by grouping on two values and create a dataset that consists of manager, priority, count Any assistance would be appreciated greatly. Thanks in advance, Danielle
