- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How do I iterate through a result set and fetch the data for each result?

I have a query to retrieve "Item_Number " in table. The results will be as below...
..| table Item_Number
Item_Number
1234
2345
4567
Now, I want to calculate count for each of these "Item Number " .
I used below query to get the count .
|table Item_Number | map search="search index=* $Item_Number$|stats count as cnt"
but I am getting zero results .
Please suggest how to achieve this count for each result values of "Item_Number "
Thanks in Advance.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Count of all instances of each value? If yes, try | stats count by Item_Number
instead of table
. stats
generates values in such a way that you can use this search to power a table on a form/dashboard.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try using
\"$Item_Number$\"
instead of $Item_Number$
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thanks for quick reply Vijeta, but its not working. I am still getting count 0's .
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

my query worked when I gave $$Item_Number$$..
your answer "\"$Item_Number$\"" also helped me when i had to use with eval ..like |eval ItemNo=\"$Item_Number$\"| ..
Thank you so much Vijeta.
Sorry for late reply.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
No problem. Glad it worked!
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@ananthan123 can you please accept the answer .
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try using fields instead of table in main search
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Yeah Vijeta, I even tried with fields and used the syntax that you shared . But did not helped me getting the count .
