Hi, I have the following query: | bin _time span=1d | stats count as ProductCount by applysourcetype, product, _time
| where _time=relative_time(now(), "-d@d") or _time=relative_time(now(), "-8d@d")
| eval when = if(_time=relative_time(now(), "-d@d"), "(Yesterday)", "(7 Days Ago)")
| eval "Products Ordered {when}" = ProductCount
| fields - _time ProductCount when
| stats values(*) as * by product , applysourcetype and I'm getting following output: How can make product filed one row for unique product?
... View more