<?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: REVISED QUESTION:  Filtering issues in column in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22875#M7253</link>
    <description>&lt;P&gt;another check would be to use this code in the custom column instead:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;= try if Text.Contains([lineItemcolumn], "shipping") then "shipping" else "InvoicedAmount" otherwise "AllWrong"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then check in how the pivot looks: Do all numbers show up in "AllWrong"? Then sth in the Text.Contains - expression is completely wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 11 Mar 2016 17:52:23 GMT</pubDate>
    <dc:creator>ImkeF</dc:creator>
    <dc:date>2016-03-11T17:52:23Z</dc:date>
    <item>
      <title>REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22636#M7133</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Original:&lt;/STRONG&gt;&lt;STRIKE&gt; Need to create a calculated column that says this:&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;Shipping charges = IF this "lineItemcolumn" contains "shipping", then give value of this "lineItemAppliedAmount".&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;No matter how I try to do it - there seems to be a conflict with using text as the filter to display an integer...&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;Any help or leads in this area would be greatly appreciated!! :)&amp;nbsp;&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;REVISED 3.10.16:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a bigger issue than orginally stated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm creating a report from invoices. With the program we use (unfortunately) the shipping charges are listed as an line item. My original thought was to create a calculated column and isolate the shipping charges... my original approach is not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I'm trying to do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;item&lt;/LI&gt;&lt;LI&gt;invoice #&lt;/LI&gt;&lt;LI&gt;invoiced amount&lt;/LI&gt;&lt;LI&gt;shipping charge (as a SEPARATE column) - when I try to isolate it by filtering it out or putting it into a different column in throws off the entire report and EVERYTHING is filtered by the shipping.&amp;nbsp;I need it be listed as a separate column&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Unit price (for each item)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because shipping charges is a line item - it's causing issues. Any ideas whatsoever???&amp;nbsp;:smileysad:&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 20:14:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22636#M7133</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-10T20:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22647#M7136</link>
      <description>&lt;P&gt;Instead of creating a calculated column using DAX&amp;nbsp;I recommend to create a custom column in the query editor using M.&lt;/P&gt;&lt;P&gt;Always.&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;Because it compresses better, has a richer library function and is easier to write in most of the cases.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can add a custom column using the UID and then you have to type in the condition (red). The full code for this step would look like this at the end:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ShippingCharges = Table.AddColumn(#"PreviousStep", "ShippingCharges", each &lt;FONT color="#ff0000"&gt;if Text.Contains([lineItemcolumn], "shipping") then [lineItemAppliedAmount] else ""&lt;/FONT&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Make sure your columns are formatted correctly before applying this step.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 15:51:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22647#M7136</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-10T15:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22649#M7138</link>
      <description>&lt;P&gt;Hmm ok - I'll give it a go. I don't know M. At All.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'll give it a try and post back here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 15:53:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22649#M7138</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-10T15:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22652#M7139</link>
      <description>&lt;P&gt;What does the #"previous step" mean??&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 15:59:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22652#M7139</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-10T15:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22655#M7142</link>
      <description>&lt;P&gt;That should be the name of the previous step in your query.&lt;/P&gt;&lt;P&gt;If you paste the code of the table to adjust here, I can stitch it together for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Get code like this: In Query Editor: Home -&amp;gt; Query -&amp;gt; Advanced Editor&lt;/P&gt;&lt;P&gt;Check all and copy&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 16:04:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22655#M7142</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-10T16:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22657#M7143</link>
      <description>&lt;P&gt;it's giving an error for what I tried - it's on a separate computer, so I can't copy and paste.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Shipping Charges = Table.AddColumn(#"PreviousStep", "ShippingCharges", each if Text.Contains([Sales Line Item Description]. "shipping") then [Sales Line Item Sales Amount] else 0)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Table I'm trying to put it in is called Sales Details&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 16:09:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22657#M7143</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-10T16:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22660#M7144</link>
      <description>&lt;P&gt;So your complete code should look like below, you should adjust the green part:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#ff0000"&gt;Source&lt;/FONT&gt; = .....,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#008000"&gt;#"Changed Type"&lt;/FONT&gt; = Table.TransformColumnTypes(&lt;FONT color="#ff0000"&gt;Source&lt;/FONT&gt;,{{"a", Int64.Type}}),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Shipping Charges = Table.AddColumn(#"PreviousStep", &lt;FONT color="#008000"&gt;"Changed Type"&lt;/FONT&gt;, each if Text.Contains([Sales Line Item Description]. "shipping") then [Sales Line Item Sales Amount] else 0)&lt;BR /&gt;in&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Added Custom"&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 16:14:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22660#M7144</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-10T16:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22668#M7149</link>
      <description>&lt;P&gt;Ok so the "Changed Type" is the data type to change to?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm sorry - I'm trying to get my mind around this langauge - I haven't used up until this...&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 16:45:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22668#M7149</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-10T16:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22675#M7154</link>
      <description>&lt;P&gt;No need to apologize.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No, "Changed Type" is the name of the previous step (where an operation has taken place that changed the data types. The name of the step has been given by the system automatically).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the comma-separated-parts of the code (lines) can be considered as autonomous variables that can be used everywhere in the query. Therefore in order to make a connection to each other they have to call each other. By using their names. In this case, the variable (stepname) "Shipping Charges" is calling the variable "Changed Type" to return the contents of it's columns [Sales Line Item Description] and [Sales Line Item Sales Amount]&amp;nbsp;in order to make the comparisons as stated in the formula.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does the code work now or do you need more help? I could load up a sample pbix workbook for you to investigate further.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 17:07:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22675#M7154</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-10T17:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22688#M7158</link>
      <description>&lt;P&gt;Well I've tried entering it in - it's throwing an error at this moment and I'm trying to research why. It gives "Token Eof expected" and then highlights a comma after the first closing parentheses.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm looking into it...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 18:01:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22688#M7158</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-10T18:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22689#M7159</link>
      <description>&lt;P&gt;I agree with&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1522" data-lia-user-login="ImkeF" class="lia-mention lia-mention-user"&gt;ImkeF﻿&lt;/a&gt;&amp;nbsp;that the best way when considering performance is to solve&amp;nbsp;this with the query editor using M. &amp;nbsp;But if you are still learning M and want to solve this quickly using DAX and a calculated column, try adding this as a calculated column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Shipping Charges = IF( CONTAINS('Sales Details', 'Sales Details'[Sales Line Item Description], "shipping"), 'Sales Details'[Sales Line Item Sales Amount], 0)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 18:15:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22689#M7159</guid>
      <dc:creator>Twan</dc:creator>
      <dc:date>2016-03-10T18:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22690#M7160</link>
      <description>&lt;P&gt;Very sorry, must be a comma instead of point before "shipping":&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#ff0000"&gt;Source&lt;/FONT&gt; = .....,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#008000"&gt;#"Changed Type"&lt;/FONT&gt; = Table.TransformColumnTypes(&lt;FONT color="#ff0000"&gt;Source&lt;/FONT&gt;, .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Shipping Charges = Table.AddColumn(#"PreviousStep", &lt;FONT color="#008000"&gt;"Changed Type"&lt;/FONT&gt;, each if Text.Contains([Sales Line Item Description]&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;,&lt;/FONT&gt;&lt;/STRONG&gt; "shipping") then [Sales Line Item Sales Amount] else 0)&lt;BR /&gt;in&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Added Custom"&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 18:17:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22690#M7160</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-10T18:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22700#M7165</link>
      <description>&lt;P&gt;Well that kind of did it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I have a bigger problem than I realize.... I might need to change my question / approach...&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 20:05:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22700#M7165</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-10T20:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22765#M7189</link>
      <description>&lt;P&gt;Looks like now there's no way around M any more :-)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure if I got your table structure and requirement correctly, so please have a look at the &lt;A href="https://www.dropbox.com/s/mpjeshq8yyx6tlw/PBI_ExtractShipping.xlsx?dl=0" target="_blank"&gt;file &lt;/A&gt;and let me know if/where things need to be changed. The code works the same in Power BI then.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 10:03:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22765#M7189</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-11T10:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22781#M7197</link>
      <description>&lt;P&gt;Agreed -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This file seems to show what I'm needing to do . And yes, you have the basic idea of the table structure. There's about 30 more fields but that's definitely it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You used the code you posted earlier to do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 12:46:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22781#M7197</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-11T12:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22800#M7205</link>
      <description>&lt;P&gt;Almost - a little modification and&amp;nbsp;an additional step:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Source = ...,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Changed Type" = Table.TransformColumnTypes(Source,....),&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Added Custom" = Table.AddColumn(#"Changed Type", "Shipping", each if Text.Contains([lineItemcolumn], "shipping") then "shipping" else "&lt;STRONG&gt;InvoicedAmount&lt;/STRONG&gt;")&lt;STRONG&gt;,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Pivoted Column" = Table.Pivot(#"Added Custom", List.Distinct(#"Added Custom"[Shipping]), "Shipping", "lineItemAppliedAmount")&lt;/STRONG&gt;&lt;BR /&gt;in&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #"Pivoted Column"&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 14:32:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22800#M7205</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-11T14:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22806#M7209</link>
      <description>&lt;P&gt;Alright, cool beans.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also think I'm trying to put this code in the wrong place. Will keep you posted...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks! :)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 14:46:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22806#M7209</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-11T14:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22811#M7214</link>
      <description>&lt;P&gt;in the advanced editor:&lt;/P&gt;&lt;P&gt;In Query Editor: Home -&amp;gt; Query -&amp;gt; Advanced Editor&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 14:53:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22811#M7214</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-11T14:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22814#M7216</link>
      <description>&lt;P&gt;Here's as far as I get...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;I don't think I'm inserting it right. Trying to research how utilized M in Power BI to try and get a better understanding. Unfortunately my deadline comes a lot faster than my M ability... :)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 14:57:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22814#M7216</guid>
      <dc:creator>heathernicole</dc:creator>
      <dc:date>2016-03-11T14:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: REVISED QUESTION:  Filtering issues in column</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22818#M7218</link>
      <description>&lt;P&gt;Yes, you're entering the full code in the editor-window of the "Add-custom-column-step" instead of the advanced query editor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But we can work from here as well - might be easier now.&lt;/P&gt;&lt;P&gt;In this case you just have to paste in this:&lt;/P&gt;&lt;P&gt;= if Text.Contains([lineItemcolumn], "shipping") then "shipping" else "InvoicedAmount"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;click OK and then perform the last step:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;check column: "Shipping",&lt;/P&gt;&lt;P&gt;then: Transform - Any Column - Pivot Column -&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Choose: your column "lineItemAppliedAmount" in "Values Column"&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 15:09:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/REVISED-QUESTION-Filtering-issues-in-column/m-p/22818#M7218</guid>
      <dc:creator>ImkeF</dc:creator>
      <dc:date>2016-03-11T15:09:48Z</dc:date>
    </item>
  </channel>
</rss>

