
Hi,
Im new in using column chart. So, I want to make chart like this:
I have this sharepoint list:
the y axis is count of the total of that categories (being/buffer/wait handling in each machine). I don't know how to make that chart.
Can anyone help me? Thankyou!
Hi @firda59 ,
Please try:
1\Add a chart control and set it's items property to:
AddColumns(
GroupBy(TableName,"Current Locaion","NewGroup"),
"Buffer",CountRows(Filter(NewGroup,'Status Komponen'="Buffer")),
"Being",CountRows(Filter(NewGroup,'Status Komponen'="Being")),
"Wait Hanging",CountRows(Filter(NewGroup,'Status Komponen'="Wait Handing"))
)
2\Set it's number of series to 3
Best Regards,
Bof