Stacked Column chart

Hi!, I’m trying to created a stacked Column chart using data from MSQL, with no time.

like this view
image

image

image

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?

Please post sample data not as image but as csv?

empleado,sexo,nomino
14,F,CNTR

thanks for reply, here you are.

empleado, sexo, nomina
14,F,CNTR
14,M,CNTR
32,F,WH01
149,M,WH01
22,F,WH02
142,M,WH02

1 Like

thanks for help! I got it

1 Like