<?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 trying to convert calculated column to measure in dax in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/trying-to-convert-calculated-column-to-measure-in-dax/m-p/3707578#M144221</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I was trying to convert this dax column in to measure which I'm failing, Can anyone of you help me on this?&lt;BR /&gt;Customer Adjusted = IF ( OR ( 'Table A'[Creation Date] = BLANK (), 'Table A'[Customer] = BLANK () ), BLANK (), 'Table A'[Customer] &amp;amp; " - " &amp;amp; MONTH ( 'Table A'[Creation Date] ) &amp;amp; " - " &amp;amp; YEAR ( 'Table A'[Creation Date] ) ).&lt;BR /&gt;&lt;BR /&gt;TIA&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2024 09:45:32 GMT</pubDate>
    <dc:creator>vally57</dc:creator>
    <dc:date>2024-02-19T09:45:32Z</dc:date>
    <item>
      <title>trying to convert calculated column to measure in dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/trying-to-convert-calculated-column-to-measure-in-dax/m-p/3707578#M144221</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I was trying to convert this dax column in to measure which I'm failing, Can anyone of you help me on this?&lt;BR /&gt;Customer Adjusted = IF ( OR ( 'Table A'[Creation Date] = BLANK (), 'Table A'[Customer] = BLANK () ), BLANK (), 'Table A'[Customer] &amp;amp; " - " &amp;amp; MONTH ( 'Table A'[Creation Date] ) &amp;amp; " - " &amp;amp; YEAR ( 'Table A'[Creation Date] ) ).&lt;BR /&gt;&lt;BR /&gt;TIA&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 09:45:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/trying-to-convert-calculated-column-to-measure-in-dax/m-p/3707578#M144221</guid>
      <dc:creator>vally57</dc:creator>
      <dc:date>2024-02-19T09:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: trying to convert calculated column to measure in dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/trying-to-convert-calculated-column-to-measure-in-dax/m-p/3707656#M144223</link>
      <description>&lt;P&gt;hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="449993" data-lia-user-login="vally57" class="lia-mention lia-mention-user"&gt;vally57&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;you need to wrap your column refrence in min(),max() or sum() as you need&lt;/P&gt;&lt;P&gt;like below&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Customer Adjusted = 
IF ( 
  OR ( min('Table A'[Creation Date]) = BLANK (), min('Table A'[Customer]) = BLANK () ),
  BLANK (), 
  min('Table A'[Customer]) &amp;amp; " - " &amp;amp; MONTH ( min('Table A'[Creation Date]) ) &amp;amp; " - " &amp;amp; YEAR ( 
  min('Table A'[Creation Date]) ) 
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 19 Feb 2024 10:07:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/trying-to-convert-calculated-column-to-measure-in-dax/m-p/3707656#M144223</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-02-19T10:07:23Z</dc:date>
    </item>
  </channel>
</rss>

