<?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: undefined in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3231200#M118569</link>
    <description>&lt;P&gt;Thankyou for the help.&lt;/P&gt;</description>
    <pubDate>Thu, 11 May 2023 15:23:18 GMT</pubDate>
    <dc:creator>Korekar27</dc:creator>
    <dc:date>2023-05-11T15:23:18Z</dc:date>
    <item>
      <title>undefined</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3225176#M118089</link>
      <description>&lt;P&gt;I have all the sales values in Crore.&lt;/P&gt;&lt;P&gt;And I want to create in slicer there would one option values in Crore and another option values in million.When i choose values in Crore all the values is visualization should come in crore and when I choose million all the values in visualization should come in million&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I convert crore values in million?&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 15:02:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3225176#M118089</guid>
      <dc:creator>Korekar27</dc:creator>
      <dc:date>2023-05-08T15:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: undefined</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3225528#M118118</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;Try this..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To create a slicer with options to view values in Crore and Million in Power BI, you can follow these steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Create a new measure to convert the sales values from Crore to Million. You can use the following formula:&lt;/P&gt;&lt;P&gt;Sales in Million = [Sales] / 10&lt;/P&gt;&lt;P&gt;This formula divides the sales value by 10 to convert it from Crore to Million.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Create a new slicer visual and add it to the report page.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Add two options to the slicer for Crore and Million.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Select the Sales measure and the Sales in Million measure in the Fields pane.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Go to the Format pane for the Sales in Million measure, expand the Data Label section, and change the Display Unit to "Millions".&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Use the Selection Controls option in the Format pane to set the slicer to control the Sales measure and the Sales in Million measure.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Create a visual that shows the sales data, such as a table or a chart.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Format the visual to show the appropriate unit based on the slicer selection. You can use the Selection Pane to show or hide visuals based on the slicer selection.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;By following these steps, you can create a slicer with options to view values in Crore and Million and also convert the sales values accordingly in your Power BI report.&lt;/P&gt;</description>
      <pubDate>Mon, 08 May 2023 18:48:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3225528#M118118</guid>
      <dc:creator>Ajendra</dc:creator>
      <dc:date>2023-05-08T18:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: undefined</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3229946#M118490</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="557245" data-lia-user-login="Korekar27" class="lia-mention lia-mention-user"&gt;Korekar27&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could try the custom format to create two another columns. And then create slicer to choose them.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-custom-format-strings" target="_blank"&gt;Use custom format strings in Power BI Desktop - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Million = ROUND([Value]/10000000,2)
&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Core = ROUND([Value]/100000000,2)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;You'll see the two columns are displaying the below format.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Create a field parameter for filtering.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/create-reports/power-bi-field-parameters" target="_blank"&gt;Let report readers use field parameters to change visuals (preview) - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Drag the two columns to the left.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Click "Create", the field parameter with a slicer will be generated.&lt;/P&gt;
&lt;P&gt;At last, you can show the different format dynamically.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&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;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Stephen Tao&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 06:58:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3229946#M118490</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-11T06:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: undefined</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3231200#M118569</link>
      <description>&lt;P&gt;Thankyou for the help.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 15:23:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3231200#M118569</guid>
      <dc:creator>Korekar27</dc:creator>
      <dc:date>2023-05-11T15:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: undefined</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3231203#M118570</link>
      <description>&lt;P&gt;Thankyou for your help.&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 15:23:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3231203#M118570</guid>
      <dc:creator>Korekar27</dc:creator>
      <dc:date>2023-05-11T15:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: undefined</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3235972#M118947</link>
      <description>&lt;DIV&gt;Hey bro I've another question&lt;/DIV&gt;&lt;DIV&gt;Kindly help me with it&lt;/DIV&gt;&lt;DIV&gt;PFAtwo datasets for&amp;nbsp;your reference.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;PFB Scenario Objectives:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;1) Load the Superstore data to calculate no. of orders that have been generated for the last 6 , 12 , 18 months based on a filter selection.&lt;/DIV&gt;&lt;DIV&gt;2) Load the BusinessE2E data to perform the below activities:&lt;/DIV&gt;&lt;DIV&gt;&lt;BLOCKQUOTE&gt;&lt;UL&gt;&lt;LI&gt;Create an optimized data model&lt;/LI&gt;&lt;LI&gt;Create dynamic YTD , MTD , QTD calculations based on user selection&lt;/LI&gt;&lt;LI&gt;Calculate top and bottom n analysis for products based on sales and quantity based on user selection&lt;/LI&gt;&lt;LI&gt;Allow users to dynamically change measures in the chart. Calculate sales, quantity and COGS for this.&lt;/LI&gt;&lt;/UL&gt;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 15 May 2023 15:10:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3235972#M118947</guid>
      <dc:creator>Korekar27</dc:creator>
      <dc:date>2023-05-15T15:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: undefined</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3236018#M118948</link>
      <description>&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Hey bro can you help me with it&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;PFA two datasets for&amp;nbsp;your reference.&lt;/LI&gt;&lt;/UL&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;PFB Scenario Objectives:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;1) Load the Superstore data to calculate no. of orders that have been generated for the last 6 , 12 , 18 months based on a filter selection.&lt;/DIV&gt;&lt;DIV&gt;2) Load the BusinessE2E data to perform the below activities:&lt;/DIV&gt;&lt;DIV&gt;&lt;BLOCKQUOTE&gt;&lt;UL&gt;&lt;LI&gt;Create an optimized data model&lt;/LI&gt;&lt;LI&gt;Create dynamic YTD , MTD , QTD calculations based on user selection&lt;/LI&gt;&lt;LI&gt;Calculate top and bottom n analysis for products based on sales and quantity based on user selection&lt;/LI&gt;&lt;LI&gt;Allow users to dynamically change measures in the chart. Calculate sales, quantity and COGS for this.&lt;/LI&gt;&lt;/UL&gt;&lt;/BLOCKQUOTE&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 15 May 2023 15:29:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined/m-p/3236018#M118948</guid>
      <dc:creator>Korekar27</dc:creator>
      <dc:date>2023-05-15T15:29:24Z</dc:date>
    </item>
  </channel>
</rss>

