<?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: Sales Conversion in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Sales-Conversion/m-p/313818#M9281</link>
    <description>&lt;P&gt;Is that a good representation of sample data? Do you have a calendar table that will tell you what quarter dates are in? In theory, you could create some measures to get you there. Psuedo code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Q1_Opportunities = CALCULATE(COUNT([column]),[CreatedQuarter]="Q1")

Q2_Wins = CALCULATE(COUNT([column]),[ClosedQuarter]="Q2" &amp;amp;&amp;amp; [Won]=TRUE)

Ratio = Q2_Wins / Q1_Opportunities&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Nov 2017 13:32:43 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2017-11-29T13:32:43Z</dc:date>
    <item>
      <title>Sales Conversion</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Sales-Conversion/m-p/313692#M9277</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to the world of "Power" but picking it up fast from all your great feedback. I need your guidance&amp;nbsp;on a wall I've hit. I've been pulling out my hair trying to figure this one out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to calculate sales conversion based on what we win in a quarter and divide by the number of opportunities we created in the previous quarter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is different to win rate which is the&amp;nbsp;number of opptys&amp;nbsp;won out of total with a close date in the quarter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;# Opptys Won in Qtr (Based on close date) / # Opptys created in the previous quarter to the close date. The picture better explains what I am trying to achieve. this is it in Excel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried some many different variations of logic and formula but I don't seem to be able to get the right number&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would really appreciate any guidance...&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Sales_Conv.png" style="width: 463px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/72056iBC400298B7EB36C2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Sales_Conv.png" alt="Sales_Conv.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 10:39:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Sales-Conversion/m-p/313692#M9277</guid>
      <dc:creator>nessanosullivan</dc:creator>
      <dc:date>2017-11-29T10:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Conversion</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Sales-Conversion/m-p/313818#M9281</link>
      <description>&lt;P&gt;Is that a good representation of sample data? Do you have a calendar table that will tell you what quarter dates are in? In theory, you could create some measures to get you there. Psuedo code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Q1_Opportunities = CALCULATE(COUNT([column]),[CreatedQuarter]="Q1")

Q2_Wins = CALCULATE(COUNT([column]),[ClosedQuarter]="Q2" &amp;amp;&amp;amp; [Won]=TRUE)

Ratio = Q2_Wins / Q1_Opportunities&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Nov 2017 13:32:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Sales-Conversion/m-p/313818#M9281</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2017-11-29T13:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sales Conversion</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Sales-Conversion/m-p/314464#M9308</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/48269"&gt;@nessanosullivan&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Assume 2017 Q1 Created Date, 2017 Q2 Close Date, 2017 Q2 Won are three columns, then you can create the measure below:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure= var CW Q2=Calculate(count([2017 Q2 Won]),Filter(All('Table'),[2017 Q2 Won]="TRUE"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var Created Q1=&lt;SPAN&gt;Calculate(count([2017 Q1 Created Date]),All('Table'))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;return&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Divide(CW Q2,Created Q1)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this doesn't work, please share the pbix file with some dummy data.&amp;nbsp;Do mask sensitive data before uploading.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards,&lt;BR /&gt;Qiuyun Yu&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 08:04:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Sales-Conversion/m-p/314464#M9308</guid>
      <dc:creator>v-qiuyu-msft</dc:creator>
      <dc:date>2017-11-30T08:04:41Z</dc:date>
    </item>
  </channel>
</rss>

