R
red6000
Hi, Is it possible to write code so that 1 query gives the same as the 2
seperate queries below, thanks:
SELECT QuestionData.Question, Count(QuestionData.Question) AS
Number_of_Times_Asked
FROM QuestionData
GROUP BY QuestionData.Question
ORDER BY Count(QuestionData.Question) DESC;
=======================
SELECT QuestionData.Rootcause, Count(QuestionData.Rootcause) AS
Number_of_Rootcause
FROM QuestionData
GROUP BY QuestionData.Rootcause
ORDER BY Count(QuestionData.Rootcause) DESC;
I ultimately want 1 report to show the data from the above (and other
queries). I have tried the subreport tool, but that just really wasn't
working out for me so i'm trying a different approach.
Thanks.
seperate queries below, thanks:
SELECT QuestionData.Question, Count(QuestionData.Question) AS
Number_of_Times_Asked
FROM QuestionData
GROUP BY QuestionData.Question
ORDER BY Count(QuestionData.Question) DESC;
=======================
SELECT QuestionData.Rootcause, Count(QuestionData.Rootcause) AS
Number_of_Rootcause
FROM QuestionData
GROUP BY QuestionData.Rootcause
ORDER BY Count(QuestionData.Rootcause) DESC;
I ultimately want 1 report to show the data from the above (and other
queries). I have tried the subreport tool, but that just really wasn't
working out for me so i'm trying a different approach.
Thanks.