<?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 get SharePoint excel files in to Splunk? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/685762#M233973</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/251166"&gt;@user1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I do have the same requirement, Did you find the Solution for it.&lt;BR /&gt;&lt;BR /&gt;Can you Please share the details about it.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Apr 2024 05:35:06 GMT</pubDate>
    <dc:creator>vinod743374</dc:creator>
    <dc:date>2024-04-29T05:35:06Z</dc:date>
    <item>
      <title>How to get SharePoint excel files in to Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/277560#M83701</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;What is the best practice to get the SharePoint excel files, which will be added every week to get in to Splunk as lookups?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2016 15:43:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/277560#M83701</guid>
      <dc:creator>kiran331</dc:creator>
      <dc:date>2016-12-12T15:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SharePoint excel files in to Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/277561#M83702</link>
      <description>&lt;P&gt;The best way is to pull the SharePoint list through a PowerShell Script and ingest in Splunk and schedule it through your heavy/light forwarder. Send the XML query that will look like this:&lt;BR /&gt;
-- snip&lt;BR /&gt;
&amp;lt; List&amp;gt;&lt;BR /&gt;
 &amp;lt; Query&amp;gt;&lt;BR /&gt;
  &amp;lt; Where&amp;gt;&lt;BR /&gt;
   &amp;lt; And&amp;gt;&lt;BR /&gt;
    &amp;lt; Geq&amp;gt;&lt;BR /&gt;
     &amp;lt; FieldRef Name='EventDate'/&amp;gt;&lt;BR /&gt;
     &amp;lt; Value Type='DateTime'&amp;gt;&lt;BR /&gt;
      &amp;lt; Today/&amp;gt;&lt;BR /&gt;
     &amp;lt; /Value&amp;gt;&lt;BR /&gt;
    &amp;lt; /Geq&amp;gt;&lt;BR /&gt;
    &amp;lt; Leq&amp;gt;&lt;BR /&gt;
     &amp;lt; FieldRef Name='EventDate'/&amp;gt;&lt;BR /&gt;
     &amp;lt; Value Type='DateTime'&amp;gt;&lt;BR /&gt;
      &amp;lt; Today OffsetDays='+30'/&amp;gt;&lt;BR /&gt;
     &amp;lt; /Value&amp;gt;&lt;BR /&gt;
    &amp;lt; /Leq&amp;gt;&lt;BR /&gt;
   &amp;lt; /And&amp;gt;&lt;BR /&gt;
  &amp;lt; /Where&amp;gt;&lt;BR /&gt;
 &amp;lt; /Query&amp;gt;&lt;BR /&gt;
&amp;lt; /List&amp;gt;&lt;BR /&gt;
 -- endsnip&lt;/P&gt;

&lt;P&gt;Use GetSPList command in Powershell to send the query and receive the results. You may need to install SPClient_x64 or SPClient_x86 based on your system. Cheers&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 12:08:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/277561#M83702</guid>
      <dc:creator>nabeel652</dc:creator>
      <dc:date>2020-09-29T12:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SharePoint excel files in to Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/620429#M215685</link>
      <description>&lt;P&gt;Hi, I am a novice user and I need my dashboard to take the data from an excel that is in sharepoint, could you send a sample script? What are the steps to incluye it in splunk?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;T&lt;/SPAN&gt;&lt;SPAN&gt;hank you very much&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 13:55:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/620429#M215685</guid>
      <dc:creator>user1</dc:creator>
      <dc:date>2022-11-10T13:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get SharePoint excel files in to Splunk?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/685762#M233973</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/251166"&gt;@user1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I do have the same requirement, Did you find the Solution for it.&lt;BR /&gt;&lt;BR /&gt;Can you Please share the details about it.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 05:35:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-get-SharePoint-excel-files-in-to-Splunk/m-p/685762#M233973</guid>
      <dc:creator>vinod743374</dc:creator>
      <dc:date>2024-04-29T05:35:06Z</dc:date>
    </item>
  </channel>
</rss>

