<?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 Measure to concanate a column with string in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220929#M52720</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column (with categories)&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;AAA&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BBB&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CCC&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DDD&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;EEE&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;And i would like to create a measure that adds a string after each line. E.g. "in %", like a sufix&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;AAA in %&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BBB in %&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CCC in %&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DDD in %&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;EEE in %&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Sat, 04 Dec 2021 14:13:50 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-12-04T14:13:50Z</dc:date>
    <item>
      <title>Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220929#M52720</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column (with categories)&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;AAA&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BBB&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CCC&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DDD&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;EEE&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;And i would like to create a measure that adds a string after each line. E.g. "in %", like a sufix&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;AAA in %&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BBB in %&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CCC in %&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DDD in %&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;EEE in %&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 14:13:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220929#M52720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-04T14:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220932#M52721</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think you want a calculated column rather than a measure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Following DAX will do what you need:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New Column = Table[Original Column] &amp;amp; " in %"&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 14:21:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220932#M52721</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-04T14:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220941#M52724</link>
      <description>&lt;P&gt;I have a limited dataset, I canť see data or add any additional columns into tables. Only measures is possible to create.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I´m curious if this works for any measures?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 14:36:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220941#M52724</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-04T14:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220945#M52725</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp; the measure would be&lt;/P&gt;
&lt;P&gt;Measure = MAX(tbl[c1])&amp;amp;" in %"&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 14:39:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220945#M52725</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-12-04T14:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220952#M52726</link>
      <description>&lt;P&gt;That would only add the string to the last line of the column not?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 14:44:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220952#M52726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-04T14:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220955#M52727</link>
      <description>&lt;P&gt;Really depends what you want to use the measure for. For example I don't think you can slice by a measure or use it in a row or column field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could enable the direct query for power bi datasets in the preview features and create a composite model which will let you add a column:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/power-bi/connect-data/desktop-directquery-datasets-azure-analysis-services" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/power-bi/connect-data/desktop-directquery-datasets-azure-analysis-services&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://m.youtube.com/watch?v=g-nRxDVt3To" target="_blank"&gt;https://m.youtube.com/watch?v=g-nRxDVt3To&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 14:55:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220955#M52727</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2021-12-04T14:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220956#M52728</link>
      <description>&lt;P&gt;I would like to put it to rows and next to each category (including " %") have a column with numbers.&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;AAA in %&lt;/TD&gt;&lt;TD&gt;25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BBB in %&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;CCC in %&lt;/TD&gt;&lt;TD&gt;54&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DDD in %&lt;/TD&gt;&lt;TD&gt;56&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;EEE in %&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Something like this&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 15:02:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220956#M52728</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-04T15:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220957#M52729</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;this will add that prrfix to each string&lt;/P&gt;</description>
      <pubDate>Sat, 04 Dec 2021 15:02:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2220957#M52729</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2021-12-04T15:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2224240#M52911</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;It seems the connection mode you are using is live connection.&amp;nbsp; So until now, this is the only way you can&amp;nbsp; use&amp;nbsp; to add a string.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You add a text string. So the format cannot be converted to data .&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Create a measure.&lt;/LI&gt;
&lt;/UL&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;LI-CODE lang="markup"&gt;Measure = "in %" &amp;amp;MAX('Table'[num])&lt;/LI-CODE&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;&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;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Community Support Team _ Polly&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;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Dec 2021 05:35:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2224240#M52911</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-31T05:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Measure to concanate a column with string</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2239257#M53559</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I have modified my answer. Please check if your needs are met.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Community Support Team _ Polly&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;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Dec 2021 02:24:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-to-concanate-a-column-with-string/m-p/2239257#M53559</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-15T02:24:26Z</dc:date>
    </item>
  </channel>
</rss>

