Hi all, I am trying to create a dashboard or a graph where I want to show the ticket status by weekly. I am uploading a csv file in which I have 3 fields
1) Weeks --> Values are week1, week2, week3 and week4
2) Status --> Closed and Pending
3) Team_names --> Team1, Team2 and Team3
I want to create a bar graph which shows weekly wise along with pending and closed in a single bar for each team.
I tried the below query but it is not showing in a single bar
| inputlookup July_2014.csv | stats count by status, WEEKs, team_name
... View more