Hi! Most things are possible. Let's try to figure what we are trying to achieve. "| eval Created=substr(Created, 1, 7)" Is this generating a state i.e. "created" or is this a user_id or similar with multiple combinations of values? "| eval a=if(State="Closed",1,0)" Do you want to count the number of occurrences something was created and closed? maybe source="a.csv" OR source="b.csv" OR source="c.csv" Company="x"
| eval created_by=substr(Created, 1, 7)
| eval is_closed=if(State="Closed",1,0)
| eval user_source = created_by.":".source
| chart sum(is_closed), count by user_source OR source="a.csv" OR source="b.csv" OR source="c.csv" Company="x"
| eval created_by=substr(Created, 1, 7)
| eval is_closed=if(State="Closed",1,0)
| eval user_source = created_by.":".source
| chart sum(is_closed), count by created_by, source /Seb
... View more