<?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: All of my queries returning blank! in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722760#M180896</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1265923" data-lia-user-login="SimoneHud" class="lia-mention lia-mention-user"&gt;SimoneHud&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Glad that it's working so far, see the below suggestions for MoM and QoQ .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;AI is the genius here, I am just asking it nicely for answers&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Month_on_Month_Variance % = 
VAR CurrentMonthActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending])) &amp;amp;&amp;amp;
            MONTH('KPI 4 Seafront - Trading Income'[Week Ending]) = MONTH(MAX('KPI 4 Seafront - Trading Income'[Week Ending]))
        )
    )

VAR PreviousMonthActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(EDATE(MAX('KPI 4 Seafront - Trading Income'[Week Ending]), -1)) &amp;amp;&amp;amp;
            MONTH('KPI 4 Seafront - Trading Income'[Week Ending]) = MONTH(EDATE(MAX('KPI 4 Seafront - Trading Income'[Week Ending]), -1))
        )
    )

RETURN
IF(
    ISBLANK(PreviousMonthActual) || PreviousMonthActual = 0,
    BLANK(),
    DIVIDE(CurrentMonthActual - PreviousMonthActual, PreviousMonthActual)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Quarter_on_Quarter_Variance % = 
VAR CurrentQuarterActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending])) &amp;amp;&amp;amp;
            QUARTER('KPI 4 Seafront - Trading Income'[Week Ending]) = QUARTER(MAX('KPI 4 Seafront - Trading Income'[Week Ending]))
        )
    )

VAR PreviousQuarterDate = EDATE(MAX('KPI 4 Seafront - Trading Income'[Week Ending]), -3)

VAR PreviousQuarterActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(PreviousQuarterDate) &amp;amp;&amp;amp;
            QUARTER('KPI 4 Seafront - Trading Income'[Week Ending]) = QUARTER(PreviousQuarterDate)
        )
    )

RETURN
IF(
    ISBLANK(PreviousQuarterActual) || PreviousQuarterActual = 0,
    BLANK(),
    DIVIDE(CurrentQuarterActual - PreviousQuarterActual, PreviousQuarterActual)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The measures provide the below results :&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;Antonio&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 06 Jun 2025 08:57:37 GMT</pubDate>
    <dc:creator>antfr99</dc:creator>
    <dc:date>2025-06-06T08:57:37Z</dc:date>
    <item>
      <title>All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668465#M178832</link>
      <description>&lt;P&gt;Please help me! I'm VERY new to DAX and trying to do a KPI card to show MoM results to no avail. I have found (on here) some DAX coding which I've successfully used to get my results. In a table, when using my date function, under the values, I can clearly see the actuals and then another column which shows me I've correctly calculated the prev month. I can also do a formula that correctly shows this month which also works. However, when I try to show it in a card, it shows as blank.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are some codes I've tried:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Month On Month = CALCULATE(Sum('KPI 1  Seafront Enforcement'[Actual]), PREVIOUSMONTH('KPI 1  Seafront Enforcement'[Seafront Enforcement Dates].[Date]))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Prev Month Acs = CALCULATE(SUM('KPI 1  Seafront Enforcement'[Actual]), PREVIOUSMONTH('KPI 1  Seafront Enforcement'[Seafront Enforcement Dates].[Date]))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;New Month Over Month Measure = CALCULATE(SUM('KPI 1  Seafront Enforcement'[Actual]),PREVIOUSMONTH(LASTDATE('KPI 1  Seafront Enforcement'[Seafront Enforcement Dates].[Date])))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No matter what I do, I end up with a blank card.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the data sample:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;PLEASE will someone help me. I've spent all day trying to sort this out myself! Thanks so much.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 13:17:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668465#M178832</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-04-25T13:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668530#M178833</link>
      <description>&lt;P&gt;If you want to use Time Intelligence functions like PREVIOUSMONTH then you need to use a designated Calendar table in your data model. They don't work well in fact tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;Do not include sensitive information. Do not include anything that is unrelated to the issue or question. &lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Need help uploading data? &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 14:14:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668530#M178833</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-04-25T14:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668531#M178834</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1265923" data-lia-user-login="SimoneHud" class="lia-mention lia-mention-user"&gt;SimoneHud&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suggest try this measure&amp;nbsp; :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Month_on_Month_Variance = 
VAR CurrentMonthActual =
    CALCULATE(
        SUM('KPI 1 Seafront Enforcement'[Actual]),
        FILTER(
            ALL('KPI 1 Seafront Enforcement'),
            YEAR('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = YEAR(MAX('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]))
            &amp;amp;&amp;amp;
            MONTH('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = MONTH(MAX('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]))
        )
    )

VAR PreviousMonthActual =
    CALCULATE(
        SUM('KPI 1 Seafront Enforcement'[Actual]),
        FILTER(
            ALL('KPI 1 Seafront Enforcement'),
                        (YEAR('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = YEAR(EDATE(MAX('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]), -1)))
            &amp;amp;&amp;amp;
            (MONTH('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = MONTH(EDATE(MAX('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]), -1)))
        )
    )

RETURN
IF(
    ISBLANK(PreviousMonthActual),
    BLANK(),
    CurrentMonthActual - PreviousMonthActual
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should the get the Month on Month variance in your table and in a card&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;Above was created with the assistance of AI.&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Antonio&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 14:15:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668531#M178834</guid>
      <dc:creator>antfr99</dc:creator>
      <dc:date>2025-04-25T14:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668570#M178835</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Without the external filter, the PREVIOUSMONTH function will return the minimum date of all dates, which is blank (because there is no date before the minimum date). &lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Because of the blank filter, the final result is blank.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Time intelligence functions are affected by context, so it is best to provide an example file (with a demonstration of the results you want).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 14:47:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668570#M178835</guid>
      <dc:creator>ZhangKun</dc:creator>
      <dc:date>2025-04-25T14:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668578#M178837</link>
      <description>&lt;P&gt;SUPER helpful. Thanks Antonio. If I wanted to do WoW, would it be the same but replace the word Month with Week, and same with QoQ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 14:50:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668578#M178837</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-04-25T14:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668648#M178838</link>
      <description>&lt;P&gt;Ok, great to hear that its helpful !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are some amendments for QoQ and WoW as per below :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Quarter_on_Quarter_Variance = 
VAR CurrentQuarterActual =
    CALCULATE(
        SUM('KPI 1 Seafront Enforcement'[Actual]),
        FILTER(
            ALL('KPI 1 Seafront Enforcement'),
            YEAR('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = YEAR(MAX('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates])) &amp;amp;&amp;amp;
            QUARTER('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = QUARTER(MAX('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]))
        )
    )

VAR PreviousQuarterDate = EDATE(MAX('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]), -3)

VAR PreviousQuarterActual =
    CALCULATE(
        SUM('KPI 1 Seafront Enforcement'[Actual]),
        FILTER(
            ALL('KPI 1 Seafront Enforcement'),
            YEAR('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = YEAR(PreviousQuarterDate) &amp;amp;&amp;amp;
            QUARTER('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = QUARTER(PreviousQuarterDate)
        )
    )

RETURN
IF(
    ISBLANK(PreviousQuarterActual),
    BLANK(),
    CurrentQuarterActual - PreviousQuarterActual
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and for week on week :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Week_on_Week_Variance = 
VAR CurrentDate = MAX('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates])
VAR CurrentWeekActual =
    CALCULATE(
        SUM('KPI 1 Seafront Enforcement'[Actual]),
        FILTER(
            ALL('KPI 1 Seafront Enforcement'),
            YEAR('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = YEAR(CurrentDate) &amp;amp;&amp;amp;
            WEEKNUM('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates], 2) = WEEKNUM(CurrentDate, 2)
        )
    )

VAR PreviousWeekDate = CurrentDate - 7

VAR PreviousWeekActual =
    CALCULATE(
        SUM('KPI 1 Seafront Enforcement'[Actual]),
        FILTER(
            ALL('KPI 1 Seafront Enforcement'),
            YEAR('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates]) = YEAR(PreviousWeekDate) &amp;amp;&amp;amp;
            WEEKNUM('KPI 1 Seafront Enforcement'[Seafront Enforcement Dates], 2) = WEEKNUM(PreviousWeekDate, 2)
        )
    )

RETURN
IF(
    ISBLANK(PreviousWeekActual),
    BLANK(),
    CurrentWeekActual - PreviousWeekActual
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;to get the below :&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 16:01:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668648#M178838</guid>
      <dc:creator>antfr99</dc:creator>
      <dc:date>2025-04-25T16:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668740#M178842</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="136523" data-lia-user-login="Antoni" class="lia-mention lia-mention-user"&gt;Antoni&lt;/a&gt;&amp;nbsp;You are a genius. So I copied and amended the code, thank you. However, I am still getting a blank output. What could it be that I'm doing incorrectly?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Week_on_Week_Variance_Seafront_Trading = 
VAR CurrentDate = MAX('KPI 4 Seafront - Trading Income'[Week Ending].[Date])
VAR CurrentWeekActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending].[Date]) = YEAR(CurrentDate) &amp;amp;&amp;amp;
            WEEKNUM('KPI 4 Seafront - Trading Income'[Week Ending].[Date], 2) = WEEKNUM(CurrentDate, 2)
        )
    )

VAR PreviousWeekDate = CurrentDate - 7

VAR PreviousWeekActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending].[Date]) = YEAR(PreviousWeekDate) &amp;amp;&amp;amp;
            WEEKNUM('KPI 4 Seafront - Trading Income'[Week Ending].[Date], 2) = WEEKNUM(PreviousWeekDate, 2)
        )
    )

RETURN
IF(
    ISBLANK(PreviousWeekActual),
    BLANK(),
    CurrentWeekActual - PreviousWeekActual
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Apr 2025 17:45:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4668740#M178842</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-04-25T17:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4670107#M178873</link>
      <description>&lt;P&gt;Ok, can you try this amended code ? I assume the code for the month and quarter is working fine ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Week_on_Week_Variance 2 = 
VAR CurrentWeekActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending]))
            &amp;amp;&amp;amp;
            WEEKNUM('KPI 4 Seafront - Trading Income'[Week Ending], 2) = WEEKNUM(MAX('KPI 4 Seafront - Trading Income'[Week Ending]), 2)
        )
    )

VAR PreviousWeekActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending]) - 7)
            &amp;amp;&amp;amp;
            WEEKNUM('KPI 4 Seafront - Trading Income'[Week Ending], 2) = WEEKNUM(MAX('KPI 4 Seafront - Trading Income'[Week Ending]) - 7, 2)
        )
    )

RETURN
IF(
    ISBLANK(PreviousWeekActual),
    BLANK(),
    CurrentWeekActual - PreviousWeekActual
)

 &lt;/LI-CODE&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;</description>
      <pubDate>Mon, 28 Apr 2025 07:06:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4670107#M178873</guid>
      <dc:creator>antfr99</dc:creator>
      <dc:date>2025-04-28T07:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722569#M180885</link>
      <description>&lt;P&gt;Hey, me again! Are you able to help me return the answer as a percentage please? So I'd like to get a percentage of WoW (Current week v previous week)? Thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 07:19:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722569#M180885</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-06-06T07:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722654#M180891</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1265923" data-lia-user-login="SimoneHud" class="lia-mention lia-mention-user"&gt;SimoneHud&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sure, I suggest the below measure :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Week_on_Week_Variance % = 
VAR CurrentWeekActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending])) &amp;amp;&amp;amp;
            WEEKNUM('KPI 4 Seafront - Trading Income'[Week Ending], 2) = WEEKNUM(MAX('KPI 4 Seafront - Trading Income'[Week Ending]), 2)
        )
    )

VAR PreviousWeekActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending]) - 7) &amp;amp;&amp;amp;
            WEEKNUM('KPI 4 Seafront - Trading Income'[Week Ending], 2) = WEEKNUM(MAX('KPI 4 Seafront - Trading Income'[Week Ending]) - 7, 2)
        )
    )

RETURN
IF(
    ISBLANK(PreviousWeekActual) || PreviousWeekActual = 0,
    BLANK(),
    DIVIDE(CurrentWeekActual - PreviousWeekActual, PreviousWeekActual)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should get the below result after you amend your measure to percentage format :&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;Hope this helps&lt;/P&gt;&lt;P&gt;Antonio&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 08:04:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722654#M180891</guid>
      <dc:creator>antfr99</dc:creator>
      <dc:date>2025-06-06T08:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722666#M180892</link>
      <description>&lt;P&gt;GENIUS! Can you do MoM and QoQ for me too??? Last requests I PROMISE &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 08:11:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722666#M180892</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-06-06T08:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722760#M180896</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1265923" data-lia-user-login="SimoneHud" class="lia-mention lia-mention-user"&gt;SimoneHud&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Glad that it's working so far, see the below suggestions for MoM and QoQ .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;AI is the genius here, I am just asking it nicely for answers&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Month_on_Month_Variance % = 
VAR CurrentMonthActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending])) &amp;amp;&amp;amp;
            MONTH('KPI 4 Seafront - Trading Income'[Week Ending]) = MONTH(MAX('KPI 4 Seafront - Trading Income'[Week Ending]))
        )
    )

VAR PreviousMonthActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(EDATE(MAX('KPI 4 Seafront - Trading Income'[Week Ending]), -1)) &amp;amp;&amp;amp;
            MONTH('KPI 4 Seafront - Trading Income'[Week Ending]) = MONTH(EDATE(MAX('KPI 4 Seafront - Trading Income'[Week Ending]), -1))
        )
    )

RETURN
IF(
    ISBLANK(PreviousMonthActual) || PreviousMonthActual = 0,
    BLANK(),
    DIVIDE(CurrentMonthActual - PreviousMonthActual, PreviousMonthActual)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Quarter_on_Quarter_Variance % = 
VAR CurrentQuarterActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending])) &amp;amp;&amp;amp;
            QUARTER('KPI 4 Seafront - Trading Income'[Week Ending]) = QUARTER(MAX('KPI 4 Seafront - Trading Income'[Week Ending]))
        )
    )

VAR PreviousQuarterDate = EDATE(MAX('KPI 4 Seafront - Trading Income'[Week Ending]), -3)

VAR PreviousQuarterActual =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            YEAR('KPI 4 Seafront - Trading Income'[Week Ending]) = YEAR(PreviousQuarterDate) &amp;amp;&amp;amp;
            QUARTER('KPI 4 Seafront - Trading Income'[Week Ending]) = QUARTER(PreviousQuarterDate)
        )
    )

RETURN
IF(
    ISBLANK(PreviousQuarterActual) || PreviousQuarterActual = 0,
    BLANK(),
    DIVIDE(CurrentQuarterActual - PreviousQuarterActual, PreviousQuarterActual)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The measures provide the below results :&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;Antonio&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 08:57:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722760#M180896</guid>
      <dc:creator>antfr99</dc:creator>
      <dc:date>2025-06-06T08:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722764#M180897</link>
      <description>&lt;P&gt;OK, at the risk of getting totally told to 'do one'....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two more (and then my dashboard is complete) This one may be challenging...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our financial year starts in April. I need to be able to show the QTD total. So how do I tell PowerBI at the appropriate time to only look for data between April 1 - June 30 (if we are in that period) and start reporting again for July 1 - 30 Sept (if we are in that period).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 09:03:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722764#M180897</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-06-06T09:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722879#M180899</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1265923" data-lia-user-login="SimoneHud" class="lia-mention lia-mention-user"&gt;SimoneHud&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok,&amp;nbsp;I recommend using the following measures (note that they work best when your data is limited to the current year).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;Use the measure below to see how the amount builds up month over month within a quarter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;QTD_Actual_Fiscal = 
VAR CurrentDate = MAX('KPI 4 Seafront - Trading Income'[Week Ending])


VAR FiscalQuarterStart =
    SWITCH(
        TRUE(),
        MONTH(CurrentDate) IN {4,5,6}, DATE(YEAR(CurrentDate), 4, 1),
        MONTH(CurrentDate) IN {7,8,9}, DATE(YEAR(CurrentDate), 7, 1),
        MONTH(CurrentDate) IN {10,11,12}, DATE(YEAR(CurrentDate), 10, 1),
        DATE(YEAR(CurrentDate) - 1, 1, 1)
    )

RETURN
CALCULATE(
    SUM('KPI 4 Seafront - Trading Income'[Actual]),
    FILTER(
        ALL('KPI 4 Seafront - Trading Income'),
        'KPI 4 Seafront - Trading Income'[Week Ending] &amp;gt;= FiscalQuarterStart &amp;amp;&amp;amp;
        'KPI 4 Seafront - Trading Income'[Week Ending] &amp;lt;= CurrentDate
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Use the below to show QTD ( up to last full month of current quarter ) :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;QTD_Actual_LastFullMonth_Only = 
VAR TodayDate = TODAY()


VAR CurrentFiscalQuarterStart =
    SWITCH(
        TRUE(),
        MONTH(TodayDate) IN {4,5,6}, DATE(YEAR(TodayDate), 4, 1),
        MONTH(TodayDate) IN {7,8,9}, DATE(YEAR(TodayDate), 7, 1),
        MONTH(TodayDate) IN {10,11,12}, DATE(YEAR(TodayDate), 10, 1),
        DATE(YEAR(TodayDate) - 1, 1, 1)
    )


VAR CurrentFiscalQuarterEnd = EOMONTH(CurrentFiscalQuarterStart, 2)


VAR LastFullMonthEnd = EOMONTH(TodayDate, -1)
VAR LastFullMonthStart = DATE(YEAR(LastFullMonthEnd), MONTH(LastFullMonthEnd), 1)


VAR QuarterToDateTotal =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            'KPI 4 Seafront - Trading Income'[Week Ending] &amp;gt;= CurrentFiscalQuarterStart &amp;amp;&amp;amp;
            'KPI 4 Seafront - Trading Income'[Week Ending] &amp;lt;= LastFullMonthEnd
        )
    )


RETURN
IF(
    MONTH(MAX('KPI 4 Seafront - Trading Income'[Week Ending])) = MONTH(LastFullMonthEnd) &amp;amp;&amp;amp;
    YEAR(MAX('KPI 4 Seafront - Trading Income'[Week Ending])) = YEAR(LastFullMonthEnd),
    QuarterToDateTotal,
    BLANK()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Use the below to show QTD ( including current month of current quarter ) :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;QTD_Actual_CurrentMonth_Only = 
VAR TodayDate = TODAY()


VAR CurrentFiscalQuarterStart =
    SWITCH(
        TRUE(),
        MONTH(TodayDate) IN {4,5,6}, DATE(YEAR(TodayDate), 4, 1),
        MONTH(TodayDate) IN {7,8,9}, DATE(YEAR(TodayDate), 7, 1),
        MONTH(TodayDate) IN {10,11,12}, DATE(YEAR(TodayDate), 10, 1),
        DATE(YEAR(TodayDate) - 1, 1, 1)
    )


VAR CurrentMonthEnd = EOMONTH(TodayDate, 0)


VAR CurrentRowDate = MAX('KPI 4 Seafront - Trading Income'[Week Ending])


VAR IsCurrentMonth =
    MONTH(CurrentRowDate) = MONTH(TodayDate) &amp;amp;&amp;amp;
    YEAR(CurrentRowDate) = YEAR(TodayDate)


VAR QuarterToDateUpToCurrentMonth =
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            'KPI 4 Seafront - Trading Income'[Week Ending] &amp;gt;= CurrentFiscalQuarterStart &amp;amp;&amp;amp;
            'KPI 4 Seafront - Trading Income'[Week Ending] &amp;lt;= CurrentMonthEnd
        )
    )

RETURN
IF(
    IsCurrentMonth,
    QuarterToDateUpToCurrentMonth,
    BLANK()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;below are the results :&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;Antonio&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 10:35:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722879#M180899</guid>
      <dc:creator>antfr99</dc:creator>
      <dc:date>2025-06-06T10:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722892#M180900</link>
      <description>&lt;P&gt;Thank you so much! Do you have a 'buy me a coffee' style account that I can contribute to? You've helped me so much and I am really greatful. Thank you Antonio.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 10:48:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722892#M180900</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-06-06T10:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722943#M180903</link>
      <description>&lt;P&gt;Hey, sorry, its the last one that I want to use. So all transations up to date. But this is returning "0" for me. The other two options work fine but ideally, its the last one I want as I want to include all income to date. I tried adjusting the last line to include a + but that didn't work unfortunately!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 11:12:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4722943#M180903</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-06-06T11:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4723052#M180906</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1265923" data-lia-user-login="SimoneHud" class="lia-mention lia-mention-user"&gt;SimoneHud&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We could try to debug the 3rd option by testing different parts of the code,&amp;nbsp; but as you mentioned that the first option is working for you I suggest we amend that one so that it returns only the result for current month ( QTD )&amp;nbsp; :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;QTD_Actual_Fiscal_CurrentMonthOnly = 
VAR CurrentDate = MAX('KPI 4 Seafront - Trading Income'[Week Ending])
VAR TodayDate = TODAY()

VAR IsCurrentMonth =
    MONTH(CurrentDate) = MONTH(TodayDate) &amp;amp;&amp;amp;
    YEAR(CurrentDate) = YEAR(TodayDate)

VAR FiscalQuarterStart =
    SWITCH(
        TRUE(),
        MONTH(CurrentDate) IN {4,5,6}, DATE(YEAR(CurrentDate), 4, 1),
        MONTH(CurrentDate) IN {7,8,9}, DATE(YEAR(CurrentDate), 7, 1),
        MONTH(CurrentDate) IN {10,11,12}, DATE(YEAR(CurrentDate), 10, 1),
        DATE(YEAR(CurrentDate) - 1, 1, 1)
    )

RETURN
IF(
    IsCurrentMonth,
    CALCULATE(
        SUM('KPI 4 Seafront - Trading Income'[Actual]),
        FILTER(
            ALL('KPI 4 Seafront - Trading Income'),
            'KPI 4 Seafront - Trading Income'[Week Ending] &amp;gt;= FiscalQuarterStart &amp;amp;&amp;amp;
            'KPI 4 Seafront - Trading Income'[Week Ending] &amp;lt;= CurrentDate
        )
    ),
    BLANK()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;result :&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if it works on your side ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Antonio&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 12:00:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4723052#M180906</guid>
      <dc:creator>antfr99</dc:creator>
      <dc:date>2025-06-06T12:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4723243#M180912</link>
      <description>&lt;P&gt;I need it to show for the whole quarter including the current month? So for the whole of April, May and June. Then after 1st July for it to show for all income in July, Aug, Sept&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 13:48:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4723243#M180912</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-06-06T13:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4723270#M180915</link>
      <description>&lt;P&gt;Can you recreate in an excel sheet and send me a screenshot of your requirement ?&amp;nbsp; Indicate if you are in June what you expect to see for the year&amp;nbsp; . Then in another screenshot indicate if you are in Sept what you expect to see for the year&amp;nbsp; . Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 14:13:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4723270#M180915</guid>
      <dc:creator>antfr99</dc:creator>
      <dc:date>2025-06-06T14:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: All of my queries returning blank!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4723293#M180917</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 14:23:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/All-of-my-queries-returning-blank/m-p/4723293#M180917</guid>
      <dc:creator>SimoneHud</dc:creator>
      <dc:date>2025-06-06T14:23:56Z</dc:date>
    </item>
  </channel>
</rss>

