<?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: Cuurncy conversion in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4310828#M58533</link>
    <description>&lt;P&gt;Thanks for the solution&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Dec 2024 04:07:50 GMT</pubDate>
    <dc:creator>Gurpreetsingh1</dc:creator>
    <dc:date>2024-12-03T04:07:50Z</dc:date>
    <item>
      <title>Cuurncy conversion</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4309715#M58517</link>
      <description>&lt;P&gt;Hi I have a query regarding currency conversion.&lt;BR /&gt;I have 5-6 POS( Point of sales) CA, US, AU, NZ.&lt;BR /&gt;I have a slicer Of POS when I select any single one then it is showing respective Cuurncy sales, but on multiple selection of POS(AU, CA, US, NZ) it is merging all CAD, USD, AUD etc. I need to convert them in one wether in CAD or in USD.&lt;BR /&gt;Please suggest any measure.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&amp;nbsp;&lt;BR /&gt;Gurpreet Singh&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 11:00:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4309715#M58517</guid>
      <dc:creator>Gurpreetsingh1</dc:creator>
      <dc:date>2024-12-02T11:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Cuurncy conversion</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4310473#M58530</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;Do not include sensitive information. Do not include anything that is unrelated to the issue or question. &lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Need help uploading data? &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 22:10:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4310473#M58530</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-12-02T22:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Cuurncy conversion</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4310802#M58532</link>
      <description>&lt;P&gt;lbendlin&amp;nbsp;, thanks for your concern about this case. I tried to create a sample data myself based on the user's requirement and implemented the result. Please check if there is anything that can be improved. Here is my solution:&lt;BR /&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="821367" data-lia-user-login="Gurpreetsingh1" class="lia-mention lia-mention-user"&gt;Gurpreetsingh1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create a table that contains the exchange rates for each currency relative to your desired base currency (e.g., USD or CAD).&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;USRate =
var _rate=MINX(FILTER(ALL('RateTable'),'RateTable'[CurrencyA]=MAX('Table'[Point])&amp;amp;&amp;amp;[Convert CurrencyB]="US"),[Conversion rate])
return
SUMX(
    FILTER(ALL('Table'),'Table'[Point]=MAX('Table'[Point])),[Sales])
    *
_rate&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;CARate =
var _rate=MINX(FILTER(ALL('RateTable'),'RateTable'[CurrencyA]=MAX('Table'[Point])&amp;amp;&amp;amp;[Convert CurrencyB]="CA"),[Conversion rate])
return
SUMX(
    FILTER(ALL('Table'),'Table'[Point]=MAX('Table'[Point])),[Sales])
    *
_rate&lt;/LI-CODE&gt;
&lt;P&gt;3. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If the results above don't meet your expectations, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2024 03:34:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4310802#M58532</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-03T03:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cuurncy conversion</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4310828#M58533</link>
      <description>&lt;P&gt;Thanks for the solution&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2024 04:07:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Cuurncy-conversion/m-p/4310828#M58533</guid>
      <dc:creator>Gurpreetsingh1</dc:creator>
      <dc:date>2024-12-03T04:07:50Z</dc:date>
    </item>
  </channel>
</rss>

