Hi, I wanted a single graph to show values. One search is index="cumu_open_csv" Assignee="ram" | eval open_field=if(in(Status,"Open","Reopened","Waiting","In Progress"), 1,0) | stats count(eval(open_field=1)) AS Open, count(eval(open_field=0)) AS closed by CW_Created this gives me a table as Similarly I have another search index="cumu_open_csv" Assignee="ram" | eval open_field=if(in(Status,"Open","Reopened","Waiting","In Progress"), 1,0) | stats count(eval(open_field=1)) As DueOpen by CW_DueDate which gives me another table as I tried to combine these two using appendcols...but the X-axis has only the CW_Created and displays the second table details in wrong CW. I wanted CW_Created and CW_Duedate to be combined and provide the result in a single table like CW, Open,Close,DueCount wherever DueCount is not for a particular CW fill it with 0, for others display the data like so.. Open Close DueCount CW27 7 0 0 CW28 2 0 0 CW29 0 0 4 CW30 0 7 3 CW31 0 0 1 CW32 0 0 1 Kindly help me with this.
... View more