<?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>abbasabdulla Tracker</title>
    <link>https://community.fabric.microsoft.com/t5/s/yrjkf47658/tracker</link>
    <description>abbasabdulla Tracker</description>
    <pubDate>Thu, 17 Sep 2026 15:18:04 GMT</pubDate>
    <dc:date>2026-09-17T15:18:04Z</dc:date>
    <item>
      <title>Re: Sum two columns if third column contains text</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Sum-two-columns-if-third-column-contains-text/m-p/503564#M235060</link>
      <description>Hi, I don't know which powerbi products do you test my function in, I have tested it using Power BI Desktop Version: 2.41.4581.361 64-bit (November, 2016) Check the below Pibx file I worked on. &lt;A href="https://drive.google.com/open?id=12RIcR-QVFB1waMO2w56n4OD9iq8byHcD" target="_blank"&gt;https://drive.google.com/open?id=12RIcR-QVFB1waMO2w56n4OD9iq8byHcD&lt;/A&gt;</description>
      <pubDate>Thu, 30 Aug 2018 13:09:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Sum-two-columns-if-third-column-contains-text/m-p/503564#M235060</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-30T13:09:44Z</dc:date>
    </item>
    <item>
      <title>Re: Sum two columns if third column contains text</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Sum-two-columns-if-third-column-contains-text/m-p/502099#M234358</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this function in Caluclated Column&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;if Text.Contains([A], "ing") or  Text.Contains([A], "fy") then [B]+[C] else [B]&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Aug 2018 08:27:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Sum-two-columns-if-third-column-contains-text/m-p/502099#M234358</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-29T08:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Custom Week of month number</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Custom-Week-of-month-number/m-p/502066#M234346</link>
      <description>&lt;P&gt;Try using this function&lt;/P&gt;&lt;PRE&gt;= 1 + WEEKNUM ( Dates[Date],2)-WEEKNUM( DATE(YEAR(Dates[Date]),MONTH(Dates[Date]),1),2)&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 Aug 2018 08:29:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Custom-Week-of-month-number/m-p/502066#M234346</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-29T08:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Grouping Data by Time Frame</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Grouping-Data-by-Time-Frame/m-p/501168#M233873</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try the below function as Calculated Column&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;let
  daysuntilltoday= (DateTime.Date(DateTime.LocalNow())-[CHECK_DATE]),

 d= Int64.From(daysuntilltoday),

tag= if d &amp;gt;=90 and d &amp;lt;=120 then "90-120 Days" else if d &amp;gt;=121 and d &amp;lt;=180 then "121-180 Days" else
if d &amp;gt;=181 then "181 and greater" else "Another group"

in
  tag&lt;/PRE&gt;&lt;P&gt;Then group your data using this column&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 10:53:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Grouping-Data-by-Time-Frame/m-p/501168#M233873</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-28T10:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Custom Week of month number</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Custom-Week-of-month-number/m-p/500535#M233537</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Does changing 21 to 2 in your function solve this? Why you put the 21?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;weekinmonth = 1 + WEEKNUM ( Dates[Date],2)-WEEKNUM( STARTOFMONTH (Dates[Date]),2)&lt;/P&gt;</description>
      <pubDate>Mon, 27 Aug 2018 21:28:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Custom-Week-of-month-number/m-p/500535#M233537</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-27T21:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to check for CSV file existence before trying to load it with File.Contents?</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-check-for-CSV-file-existence-before-trying-to-load-it/m-p/498962#M232755</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you give this code a try!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;let
    Source = Folder.Files("ReportDataFolderPath &amp;amp; "\subfolder\"),
    #"Filtered Rows" = Table.SelectRows(Source, each ([Name] = "filewithdata.csv")),
    #"Counted Rows" = if Table.RowCount(#"Filtered Rows")= 1 then
let
SourceFile = Csv.Document(File.Contents("ReportDataFolderPath &amp;amp; "\subfolder\filewithdata.csv"),[Delimiter=",", Columns=18, Encoding=65001, QuoteStyle=QuoteStyle.Csv]),
    #"Promoted Headers" = Table.PromoteHeaders(SourceFile, [PromoteAllScalars=true])
in
#"Promoted Headers" 
else 
"File is not found"
in
    #"Counted Rows"&lt;/PRE&gt;&lt;P&gt;&lt;FONT face="Segoe UI, Segoe WP, Tahoma, Arial, sans-serif" color="#333333"&gt;&lt;SPAN&gt;OR check this post it has more sophisticated&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;method:&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/Integrations-with-Files-and/How-to-check-if-a-file-exists/m-p/66259/highlight/true#M5221" target="_blank"&gt;https://community.powerbi.com/t5/Integrations-with-Files-and/How-to-check-if-a-file-exists/m-p/66259/highlight/true#M5221&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Aug 2018 01:59:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-check-for-CSV-file-existence-before-trying-to-load-it/m-p/498962#M232755</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-25T01:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX equation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-help-with-DAX-equation/m-p/498952#M232750</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try using this DAX&lt;/P&gt;&lt;PRE&gt;IF('Active RCA Audit'[POE Chargeable]="POE",
BLANK(),If(OR(SEARCH("Procedural",'Active RCA Audit'[DIRECT CAUSE],1,FALSE()),SEARCH("Procedural",'Active RCA Audit'[ROOT CAUSE],1,FALSE())),"Potential",BLANK()))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Aug 2018 00:17:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-help-with-DAX-equation/m-p/498952#M232750</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-25T00:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Appended CSVs, searching rows to promote headers</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Appended-CSVs-searching-rows-to-promote-headers/m-p/489165#M227942</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the linked file&amp;nbsp;&lt;A href="https://www.dropbox.com/s/6pdix2vg1dl27l1/Append%20CSV%20PQ.xlsx?dl=0" target="_blank"&gt;https://www.dropbox.com/s/6pdix2vg1dl27l1/Append%20CSV%20PQ.xlsx?dl=0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;will this solution works for you?&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 10:25:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Appended-CSVs-searching-rows-to-promote-headers/m-p/489165#M227942</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-14T10:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Change month name language in Power Query</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Change-month-name-language-in-Power-Query/m-p/489038#M227883</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The month name will follow Locale , to change it follow the below steps&lt;/P&gt;&lt;P&gt;Goto : File &amp;gt; Options and Settings &amp;gt; Query Options &amp;gt; Current Workbook Data Load&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finally change the &lt;SPAN&gt;Locale&lt;/SPAN&gt;&amp;nbsp;from the list.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2018 09:20:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Change-month-name-language-in-Power-Query/m-p/489038#M227883</guid>
      <dc:creator>abbasabdulla</dc:creator>
      <dc:date>2018-08-14T09:20:08Z</dc:date>
    </item>
  </channel>
</rss>

