<?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 Returning Blank for Future Months in New Card Visual in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4353896#M172868</link>
    <description>&lt;P&gt;I have a table, V_PBI_MONTH_MASTER, which has 12 rows; one for each month.&lt;BR /&gt;Each month, a process will update this table's CLOSED_MONTH field to change it from "NO" to "YES".&lt;BR /&gt;I have already created a new card visual with V_PBI_MONTH_MASTER.MONTH_SHORT_NAME in it, and have a DAX calculation which appears to be working as expected. However, there is no option within the new card visual for "items with no data".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The requirements from the business are to display the new card visual with headers for each month, but only a value under them if the CLOSED_MONTH = "YES". This way, the displayed values will automatically be presented once available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also tried this with conditional formatting, returning 999999999 instead of BLANK() since it's not a value that would appear natively. However, the conditional formatting rules within the new card visual format every value the exact same whether it's true or not. I'm not quite sure why this would be happening.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;Cost Actuals vs Plan By Month =
VAR ClosedMonth = SELECTEDVALUE(V_PBI_MONTH_MASTER[CLOSED_MONTH])
RETURN
    IF(
        ClosedMonth = "YES",
        [Cost Actuals vs Plan],
        BLANK()
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jan 2025 18:40:52 GMT</pubDate>
    <dc:creator>swolfe2</dc:creator>
    <dc:date>2025-01-07T18:40:52Z</dc:date>
    <item>
      <title>Returning Blank for Future Months in New Card Visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4353896#M172868</link>
      <description>&lt;P&gt;I have a table, V_PBI_MONTH_MASTER, which has 12 rows; one for each month.&lt;BR /&gt;Each month, a process will update this table's CLOSED_MONTH field to change it from "NO" to "YES".&lt;BR /&gt;I have already created a new card visual with V_PBI_MONTH_MASTER.MONTH_SHORT_NAME in it, and have a DAX calculation which appears to be working as expected. However, there is no option within the new card visual for "items with no data".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The requirements from the business are to display the new card visual with headers for each month, but only a value under them if the CLOSED_MONTH = "YES". This way, the displayed values will automatically be presented once available.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also tried this with conditional formatting, returning 999999999 instead of BLANK() since it's not a value that would appear natively. However, the conditional formatting rules within the new card visual format every value the exact same whether it's true or not. I'm not quite sure why this would be happening.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;Cost Actuals vs Plan By Month =
VAR ClosedMonth = SELECTEDVALUE(V_PBI_MONTH_MASTER[CLOSED_MONTH])
RETURN
    IF(
        ClosedMonth = "YES",
        [Cost Actuals vs Plan],
        BLANK()
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jan 2025 18:40:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4353896#M172868</guid>
      <dc:creator>swolfe2</dc:creator>
      <dc:date>2025-01-07T18:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Returning Blank for Future Months in New Card Visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4354366#M172891</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but please try something like below whether it suits your requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-show-items-no-data?wt.mc_id=DP-MVP-5004989" target="_blank"&gt;Show items with no data in Power BI - Power BI | Microsoft Learn&lt;/A&gt;&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;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 03:34:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4354366#M172891</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2025-01-08T03:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Returning Blank for Future Months in New Card Visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4355167#M172908</link>
      <description>&lt;P&gt;This isn't quite the solve, as it's showing (Blank) in columns that do not have values. I want it to "display" nothing by hiding the text and making it the same color as the background in conditional formatting. What happens when you try to conditionally format in the New Card visual is that it actually formats ALL the values, not just the ones that meet the rule.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 12:24:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4355167#M172908</guid>
      <dc:creator>swolfe2</dc:creator>
      <dc:date>2025-01-08T12:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Returning Blank for Future Months in New Card Visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4362388#M173191</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="354683" data-lia-user-login="swolfe2" class="lia-mention lia-mention-user"&gt;swolfe2&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As mentioned in the post below: I&lt;SPAN&gt;t should be solved in the next releases of Power BI.&lt;BR /&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Conditional-Formatting-New-Card-Visual-Ref-Labels/m-p/4358528#M1361670" target="_blank" rel="noopener"&gt;Solved: Conditional Formatting - New Card Visual - Ref Lab... - Microsoft Fabric Community&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;If you want to follow up on the progress of the fix as soon as possible.&amp;nbsp;&lt;/SPAN&gt;&lt;FONT&gt;&lt;SPAN data-teams="true"&gt;You can create a support ticket and a dedicated Microsoft engineer will come to solve the problem for you.&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;It would be great if you continue to share in this issue to help others with similar problems after you know the root cause or solution.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;The link of Power BI Support:&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A id="menur2mi" class="" title="https://powerbi.microsoft.com/en-us/support/" href="https://powerbi.microsoft.com/en-us/support/" target="_blank" rel="noreferrer noopener nofollow" aria-label="链接 https://powerbi.microsoft.com/en-us/support/"&gt;https://powerbi.microsoft.com/en-us/support/&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&lt;FONT&gt;For how to create a support ticket, please refer to&amp;nbsp;&amp;nbsp;&lt;A id="menur2mk" class="" title="https://community.fabric.microsoft.com/t5/community-blog/how-to-create-a-support-ticket-in-power-bi/ba-p/683031" href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-create-a-support-ticket-in-Power-BI/ba-p/683031" target="_blank" rel="noopener" aria-label="链接如何在 Power BI 中创建支持票证 - Microsoft Fabric Community"&gt;How to create a support ticket in Power BI - Microsoft Fabric Community&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-unlink="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-unlink="true"&gt;Best Regards,&lt;/P&gt;
&lt;P data-unlink="true"&gt;Stephen Tao&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 02:32:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Returning-Blank-for-Future-Months-in-New-Card-Visual/m-p/4362388#M173191</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-14T02:32:24Z</dc:date>
    </item>
  </channel>
</rss>

