<?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 DAX CONCATENATE where conditions is from another table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737801#M83999</link>
    <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I'm making tracking URLs, so that when clicking url customer is redirected straight to spesific url.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the parcels in table "dw parcels" and the conditions in column "r04puins" in table "dw lahetystilasto".&lt;/P&gt;&lt;P&gt;What I have tried so far as column and as measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;URL for tracking =&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "Posti",&lt;BR /&gt;CONCATENATE("&lt;A href="https://www.posti.fi/fi/seuranta#/lahetys/" target="_blank"&gt;https://www.posti.fi/fi/seuranta#/lahetys/&lt;/A&gt;",'dw parcels'[parcelno]),&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "DB Schenker np",&lt;BR /&gt;CONCATENATE("&lt;A href="https://ng.myschenker.fi/npseuranta/?id=" target="_blank"&gt;https://ng.myschenker.fi/npseuranta/?id=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "Pakettipiste",&lt;BR /&gt;CONCATENATE("&lt;A href="https://pakettipisteseuranta.r2web.fi/?tid=" target="_blank"&gt;https://pakettipisteseuranta.r2web.fi/?tid=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "DHL",&lt;BR /&gt;CONCATENATE("&lt;A href="https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=" target="_blank"&gt;https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "DB Schenker",&lt;BR /&gt;CONCATENATE("&lt;A href="https://eschenker.dbschenker.com/app/tracking-public/?refNumber=" target="_blank"&gt;https://eschenker.dbschenker.com/app/tracking-public/?refNumber=&lt;/A&gt;", ''dw parcels'[parcelno])&lt;BR /&gt;)))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also tried this:&lt;/P&gt;&lt;P&gt;URL for tracking = SWITCH([r04puins],&lt;BR /&gt;"Posti", CONCATENATE("&lt;A href="https://www.posti.fi/fi/seuranta#/lahetys/" target="_blank"&gt;https://www.posti.fi/fi/seuranta#/lahetys/&lt;/A&gt;",'dw parcels'[parcelno]),&lt;BR /&gt;"DB Schenker np", CONCATENATE("&lt;A href="https://ng.myschenker.fi/npseuranta/?id=" target="_blank"&gt;https://ng.myschenker.fi/npseuranta/?id=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;"Pakettipiste", CONCATENATE("&lt;A href="https://pakettipisteseuranta.r2web.fi/?tid=" target="_blank"&gt;https://pakettipisteseuranta.r2web.fi/?tid=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;"DHL", CONCATENATE("&lt;A href="https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=" target="_blank"&gt;https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;"DB Schenker", CONCATENATE("&lt;A href="https://eschenker.dbschenker.com/app/tracking-public/?refNumber=" target="_blank"&gt;https://eschenker.dbschenker.com/app/tracking-public/?refNumber=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;"Matkahuolto", CONCATENATE("&lt;A href="https://www.matkahuolto.fi/seuranta?parcelNumber=" target="_blank"&gt;https://www.matkahuolto.fi/seuranta?parcelNumber=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;" " )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both are giving error that "can't find parcelno" or the syntax is wrong etc.&lt;/P&gt;&lt;P&gt;Any tip how I should proceed with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 31 Aug 2022 10:42:49 GMT</pubDate>
    <dc:creator>HeiJoe</dc:creator>
    <dc:date>2022-08-31T10:42:49Z</dc:date>
    <item>
      <title>DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737801#M83999</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I'm making tracking URLs, so that when clicking url customer is redirected straight to spesific url.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the parcels in table "dw parcels" and the conditions in column "r04puins" in table "dw lahetystilasto".&lt;/P&gt;&lt;P&gt;What I have tried so far as column and as measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;URL for tracking =&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "Posti",&lt;BR /&gt;CONCATENATE("&lt;A href="https://www.posti.fi/fi/seuranta#/lahetys/" target="_blank"&gt;https://www.posti.fi/fi/seuranta#/lahetys/&lt;/A&gt;",'dw parcels'[parcelno]),&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "DB Schenker np",&lt;BR /&gt;CONCATENATE("&lt;A href="https://ng.myschenker.fi/npseuranta/?id=" target="_blank"&gt;https://ng.myschenker.fi/npseuranta/?id=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "Pakettipiste",&lt;BR /&gt;CONCATENATE("&lt;A href="https://pakettipisteseuranta.r2web.fi/?tid=" target="_blank"&gt;https://pakettipisteseuranta.r2web.fi/?tid=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "DHL",&lt;BR /&gt;CONCATENATE("&lt;A href="https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=" target="_blank"&gt;https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;IF('dw lahetystilasto'[r04puins] = "DB Schenker",&lt;BR /&gt;CONCATENATE("&lt;A href="https://eschenker.dbschenker.com/app/tracking-public/?refNumber=" target="_blank"&gt;https://eschenker.dbschenker.com/app/tracking-public/?refNumber=&lt;/A&gt;", ''dw parcels'[parcelno])&lt;BR /&gt;)))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also tried this:&lt;/P&gt;&lt;P&gt;URL for tracking = SWITCH([r04puins],&lt;BR /&gt;"Posti", CONCATENATE("&lt;A href="https://www.posti.fi/fi/seuranta#/lahetys/" target="_blank"&gt;https://www.posti.fi/fi/seuranta#/lahetys/&lt;/A&gt;",'dw parcels'[parcelno]),&lt;BR /&gt;"DB Schenker np", CONCATENATE("&lt;A href="https://ng.myschenker.fi/npseuranta/?id=" target="_blank"&gt;https://ng.myschenker.fi/npseuranta/?id=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;"Pakettipiste", CONCATENATE("&lt;A href="https://pakettipisteseuranta.r2web.fi/?tid=" target="_blank"&gt;https://pakettipisteseuranta.r2web.fi/?tid=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;"DHL", CONCATENATE("&lt;A href="https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=" target="_blank"&gt;https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;"DB Schenker", CONCATENATE("&lt;A href="https://eschenker.dbschenker.com/app/tracking-public/?refNumber=" target="_blank"&gt;https://eschenker.dbschenker.com/app/tracking-public/?refNumber=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;"Matkahuolto", CONCATENATE("&lt;A href="https://www.matkahuolto.fi/seuranta?parcelNumber=" target="_blank"&gt;https://www.matkahuolto.fi/seuranta?parcelNumber=&lt;/A&gt;", 'dw parcels'[parcelno]),&lt;BR /&gt;" " )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both are giving error that "can't find parcelno" or the syntax is wrong etc.&lt;/P&gt;&lt;P&gt;Any tip how I should proceed with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 10:42:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737801#M83999</guid>
      <dc:creator>HeiJoe</dc:creator>
      <dc:date>2022-08-31T10:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737825#M84003</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Are you creating a Measure or a Calculated Column?&lt;BR /&gt;Ensure you have the column&amp;nbsp;&lt;SPAN&gt;'dw parcels'[parcelno] in the filter context&lt;BR /&gt;&lt;BR /&gt;You may share a a screenshot&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 10:54:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737825#M84003</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2022-08-31T10:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737876#M84008</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;What is the relationship between the two tables? If 'dw parcels' is at the one side of a one to many relationship with 'dw lahetystilasto', the you can use the following. Otherwise please provide your criteria for filtering 'dw parcels'[parcelno]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;URL for tracking =
CONCATENATEX (
    RELATEDTABLE ( 'dw parcels' ),
    VAR r04puins = 'dw lahetystilasto'[r04puins]
    VAR parcelno = 'dw parcels'[parcelno]
    RETURN
        SWITCH (
            r04puins,
            "Posti", "https://www.posti.fi/fi/seuranta#/lahetys/" &amp;amp; parcelno,
            "DB Schenker np", "https://ng.myschenker.fi/npseuranta/?id=" &amp;amp; parcelno,
            "Pakettipiste", "https://pakettipisteseuranta.r2web.fi/?tid=" &amp;amp; parcelno,
            "DHL", "https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=" &amp;amp; parcelno,
            "DB Schenker", "https://eschenker.dbschenker.com/app/tracking-public/?refNumber=" &amp;amp; parcelno
        ),
    UNICHAR ( 10 )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 12:07:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737876#M84008</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-31T12:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737914#M84009</link>
      <description>&lt;P&gt;Here is picture from the relationship.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 11:36:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737914#M84009</guid>
      <dc:creator>HeiJoe</dc:creator>
      <dc:date>2022-08-31T11:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737944#M84011</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;So for each shipmentno you have multiple parcelno. Which one one of them would you like to retrun? The last one i.e. the max one?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 11:52:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737944#M84011</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-31T11:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737945#M84012</link>
      <description>&lt;P&gt;All parcelno's from each shipmentno, so I can get URL for all parcel's.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 11:56:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737945#M84012</guid>
      <dc:creator>HeiJoe</dc:creator>
      <dc:date>2022-08-31T11:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737953#M84013</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try this calculated column&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;URL for tracking =
CONCATENATEX (
    RELATEDTABLE ( 'dw parcels' ),
    VAR r04puins = 'dw lahetystilasto'[r04puins]
    VAR parcelno = 'dw parcels'[parcelno]
    RETURN
        SWITCH (
            r04puins,
            "Posti", "https://www.posti.fi/fi/seuranta#/lahetys/" &amp;amp; parcelno,
            "DB Schenker np", "https://ng.myschenker.fi/npseuranta/?id=" &amp;amp; parcelno,
            "Pakettipiste", "https://pakettipisteseuranta.r2web.fi/?tid=" &amp;amp; parcelno,
            "DHL", "https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=" &amp;amp; parcelno,
            "DB Schenker", "https://eschenker.dbschenker.com/app/tracking-public/?refNumber=" &amp;amp; parcelno
        )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 12:04:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737953#M84013</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-31T12:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737977#M84015</link>
      <description>&lt;P&gt;That almost did it. Just that is should be in own rows, not in one long strin with all URLs. It works when there is only one parcelno in one shipment.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 12:15:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737977#M84015</guid>
      <dc:creator>HeiJoe</dc:creator>
      <dc:date>2022-08-31T12:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737994#M84017</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have edited the code adding UNICHAR (10). If you want completely separate rows then you need to create a new calculated table. Please let me know if this option is acceptable for you?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 12:23:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2737994#M84017</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-31T12:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738050#M84021</link>
      <description>&lt;P&gt;Yes, I need those completely separate rows. Any tip for that?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 12:38:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738050#M84021</guid>
      <dc:creator>HeiJoe</dc:creator>
      <dc:date>2022-08-31T12:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738071#M84024</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes sure. I'll get back to you shortly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 12:46:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738071#M84024</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-31T12:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738155#M84029</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Sorry I'm a little confused. originally&amp;nbsp;you got an error&amp;nbsp;that says&amp;nbsp;&lt;SPAN&gt;"&lt;EM&gt;can't find parcelno&lt;/EM&gt;"&amp;nbsp;which means&amp;nbsp;that you were trying to create a column in the&amp;nbsp;'dw lahetystilasto' table. Now the last screenshot shows that you are creating the column in the&amp;nbsp;'dw parcels' table. Please confirm which columns do you want to see in the new calculated table?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 13:15:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738155#M84029</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-31T13:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738169#M84031</link>
      <description>&lt;P&gt;That picture was not from table, it was from visualizations. "Url for Tracking" is in "dw lahetystilasto". I need to see shipmentnumber, parcelno and that "Url for Tracking" in one table.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2022 13:19:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738169#M84031</guid>
      <dc:creator>HeiJoe</dc:creator>
      <dc:date>2022-08-31T13:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738188#M84032</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Ok. Please try the following code for a calculated table &amp;gt;&lt;STRONG&gt; New Table&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Addresses Table =
GENERATE (
    'dw parcels',
    SELECTCOLUMNS (
        RELATEDTABLE ( 'dw lahetystilasto' ),
        "URL for tracking",
            VAR r04puins = 'dw lahetystilasto'[r04puins]
            VAR parcelno = 'dw parcels'[parcelno]
            RETURN
                SWITCH (
                    r04puins,
                    "Posti", "https://www.posti.fi/fi/seuranta#/lahetys/" &amp;amp; parcelno,
                    "DB Schenker np", "https://ng.myschenker.fi/npseuranta/?id=" &amp;amp; parcelno,
                    "Pakettipiste", "https://pakettipisteseuranta.r2web.fi/?tid=" &amp;amp; parcelno,
                    "DHL",
                        "https://www.dhl.com/fi-fi/home/tracking/tracking-express.html?submit=1&amp;amp;tracking-id=" &amp;amp; parcelno,
                    "DB Schenker", "https://eschenker.dbschenker.com/app/tracking-public/?refNumber=" &amp;amp; parcelno
                )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 31 Aug 2022 13:27:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2738188#M84032</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-31T13:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2740078#M84169</link>
      <description>&lt;P&gt;I was able to create the calculated table, but seems that I can't make relationship from that table to 'dw lahetystilasto'? I got error "Circular depency was detected". Should that even be possible, to make relationships with calculated table?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2022 08:09:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2740078#M84169</guid>
      <dc:creator>HeiJoe</dc:creator>
      <dc:date>2022-09-01T08:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2740142#M84176</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Why do you need the relationship? Everything you need is one table.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2022 08:36:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2740142#M84176</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-01T08:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2740232#M84187</link>
      <description>&lt;P&gt;If user selects one order, there should be only those parcel URL visible. How should the user know which URL are connected that spesific order?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2022 09:10:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2740232#M84187</guid>
      <dc:creator>HeiJoe</dc:creator>
      <dc:date>2022-09-01T09:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: DAX CONCATENATE where conditions is from another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2740349#M84200</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="427173" data-lia-user-login="HeiJoe" class="lia-mention lia-mention-user"&gt;HeiJoe&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then we can add the URL column to the table. Otherwise you need to create this table in power query&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Sep 2022 09:38:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-CONCATENATE-where-conditions-is-from-another-table/m-p/2740349#M84200</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-01T09:38:17Z</dc:date>
    </item>
  </channel>
</rss>

