<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to count filled and blank cells in excel spreadsheet by writing splunk query? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531763#M150197</link>
    <description>&lt;P&gt;It worked very well. Thanks.&lt;/P&gt;</description>
    <pubDate>Wed, 02 Dec 2020 20:34:53 GMT</pubDate>
    <dc:creator>ngwodo</dc:creator>
    <dc:date>2020-12-02T20:34:53Z</dc:date>
    <item>
      <title>How to count filled and blank cells in excel spreadsheet by writing splunk query?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531609#M150146</link>
      <description>&lt;P&gt;I need help on splunk query that will count both filled and empty cells in excel spreadsheet differently&amp;nbsp; and give the values in percentages. I am trying to track down the percentage of the cells left to be filled out in the excel spreadsheet using&amp;nbsp; |inputlookup David_metrics_temp.csv&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 04:15:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531609#M150146</guid>
      <dc:creator>ngwodo</dc:creator>
      <dc:date>2020-12-02T04:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to count filled and blank cells in excel spreadsheet by writing splunk query?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531717#M150184</link>
      <description>&lt;P&gt;Here is a way to count the number of filled and empty cells.&amp;nbsp; I'll leave it to you to compute the percentage.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup David_metrics_temp.csv 
| eval filled=0, empty=0 
| foreach * [eval filled=if('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'=filled OR '&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'=empty,filled,if(isnotnull('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'),filled+1,filled)), empty=if('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'=filled OR '&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'=empty,empty,if(isnull('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;'),empty+1, empty))] 
| fields empty filled
| stats sum(*) as * 
| table filled empty&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Dec 2020 15:11:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531717#M150184</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-12-02T15:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to count filled and blank cells in excel spreadsheet by writing splunk query?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531763#M150197</link>
      <description>&lt;P&gt;It worked very well. Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 20:34:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531763#M150197</guid>
      <dc:creator>ngwodo</dc:creator>
      <dc:date>2020-12-02T20:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to count filled and blank cells in excel spreadsheet by writing splunk query?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531764#M150198</link>
      <description>&lt;P&gt;Please what about if I add up the totals of filled and empty will this query below do it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;| eventstats sum(filled, empty) AS total&amp;nbsp; | table filled empty&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 20:36:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531764#M150198</guid>
      <dc:creator>ngwodo</dc:creator>
      <dc:date>2020-12-02T20:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to count filled and blank cells in excel spreadsheet by writing splunk query?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531767#M150200</link>
      <description>&lt;P&gt;If your problem is resolved, then please click the "Accept as Solution" button to help future readers.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 21:17:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531767#M150200</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-12-02T21:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to count filled and blank cells in excel spreadsheet by writing splunk query?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531768#M150201</link>
      <description>&lt;P&gt;Use &lt;FONT face="courier new,courier"&gt;eval&lt;/FONT&gt; to add filled and empty.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval total = filled + empty&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 21:18:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531768#M150201</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-12-02T21:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to count filled and blank cells in excel spreadsheet by writing splunk query?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531778#M150205</link>
      <description>&lt;P&gt;Thanks. I had already figure it out. Thanks again for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2020 22:14:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-count-filled-and-blank-cells-in-excel-spreadsheet-by/m-p/531778#M150205</guid>
      <dc:creator>ngwodo</dc:creator>
      <dc:date>2020-12-02T22:14:50Z</dc:date>
    </item>
  </channel>
</rss>

