<?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: Yammer Question in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2120978#M32274</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/182446"&gt;@V-lianl-msft&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help. I actually checked with them but it was quite expensive comparing what I really needed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to automate it by making an API call on the Alteryx server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not very familiar with Power BI but propably I could automate this somehow with power automate and or Power BI.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Long story short thank you for your help but I finally achieved what I wanted.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Oct 2021 08:20:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-10-07T08:20:16Z</dc:date>
    <item>
      <title>Yammer Question</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2113365#M32208</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am pretty new to Power BI, and I am unsure if I can achieve what I need.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want to run the below power shell script daily.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$GroupId=XXXXX&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$Token = "XXXXX"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$Headers = @{ "Authorization" = "Bearer "+$Token }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$GroupCycle = 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;DO&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;$GetMoreGroupsUri = "&lt;/SPAN&gt;&lt;A href="https://www.yammer.com/api/v1/users/in_group/$GroupId.xml?page=$GroupCycle" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;https://www.yammer.com/api/v1/users/in_group/$GroupId.xml?page=$GroupCycle&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;write-host ("REST API CALL : $GetMoreGroupsUri")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;[xml]$Xml = ((Invoke-WebRequest -Uri $GetMoreGroupsUri -Method Get -Headers $Headers).content)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;$YammerGroups += $Xml.response.users.user&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;$GroupCycle ++&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;$GroupCount += $Xml.response.users.user.count&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;write-host ("GROUPMEMBER COUNT : $GroupCount")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;While ($Xml.response.users.user.count -gt 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;$YammerGroups | Where {$_} | Export-Csv "$GroupId.csv" -Delimiter ","&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I found this script on this website:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.microsoft.com/en-us/office/export-yammer-group-members-to-a-csv-file-201a78fd-67b8-42c3-9247-79e79f92b535" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;https://support.microsoft.com/en-us/office/export-yammer-group-members-to-a-csv-file-201a78fd-67b8-42c3-9247-79e79f92b535&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I can execute it manually(without power bi), but I would like to know if I can run it thanks to power bi and automate it.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would appreciate all your help.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Oct 2021 09:24:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2113365#M32208</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-04T09:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: Yammer Question</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2115832#M32233</link>
      <description>&lt;P&gt;Any suggestion would be highly appreciated.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 09:38:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2115832#M32233</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-05T09:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Yammer Question</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2120295#M32268</link>
      <description>&lt;P&gt;You can try &lt;A href="https://tygraph.com/try-tygraph/#already-using-power-bi" target="_self"&gt;&lt;SPAN&gt;tyGraph&lt;/SPAN&gt;&lt;/A&gt;, which makes it easy for you to connect to Yammer so that you can export data from the dashboard.If you want to export automatically, see if this article will help:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/collaborate-share/service-automate-power-bi-report-export" target="_self"&gt;https://docs.microsoft.com/en-us/power-bi/collaborate-share/service-automate-power-bi-report-export&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Oct 2021 01:55:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2120295#M32268</guid>
      <dc:creator>V-lianl-msft</dc:creator>
      <dc:date>2021-10-07T01:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Yammer Question</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2120978#M32274</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/182446"&gt;@V-lianl-msft&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help. I actually checked with them but it was quite expensive comparing what I really needed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to automate it by making an API call on the Alteryx server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not very familiar with Power BI but propably I could automate this somehow with power automate and or Power BI.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Long story short thank you for your help but I finally achieved what I wanted.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Oct 2021 08:20:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Yammer-Question/m-p/2120978#M32274</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-07T08:20:16Z</dc:date>
    </item>
  </channel>
</rss>

