Hi!, I’m trying to created a stacked Column chart using data from MSQL, with no time.
like this view
script
SELECT COUNT (*) EMPLEADO, SEXO,NOMINA
FROM [EMPLEADO]
Where ACTIVO = ‘S’
group by SEXO, NOMINA
order by NOMINA
is there a way to stacked bar with no time values?
if there isn’t a way… any advice on how to add a custom timestamp in this query?