I have a Question that I constructed using an SQL query. Something like this:
SELECT
(SELECT COUNT() FROM MyTable WHERE Result='OK') AS Passed,
(SELECT COUNT() FROM MyTable WHERE Result<>'OK') AS Failed
FROM DUAL
I'd like to make a simple pie chart with the Passed and Failed values, but can only seem to choose one or the other values as either the Dimension or Measure.