<?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: Conditional Formatting Subtitle - Measure not updating via visual interaction in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4617318#M176705</link>
    <description>&lt;LI-CODE lang="markup"&gt;I am trying to make a line chart visualization that reports the value in the subtitle&lt;/LI-CODE&gt;
&lt;P&gt;Which value? A line chart by definition has multiple values.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Mar 2025 23:47:01 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2025-03-19T23:47:01Z</dc:date>
    <item>
      <title>Conditional Formatting Subtitle - Measure not updating via visual interaction</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4617180#M176693</link>
      <description>&lt;P&gt;Hello, I am trying to make a line chart visualization that reports the value in the subtitle. I have tried several different DAX formulas but none of them provide a real-time update when the visual is interacted with. They work seperately as their own visualizations.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this a limitation of the program or can this functionality be achieved by modifying the DAX or some other setting?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;ChartSubtitle = CONVERT(FORMAT(IF(HASONEVALUE(data[Sum of Closed Order]),VALUES(data[Sum of Closed Order]),SUM(data[Sum of Closed Order])), "#,##0"),STRING)

//

SelectedOrders = 
VAR SelectedOrder = SELECTEDVALUE(data[Month])
RETURN
IF(
    NOT ISBLANK(SelectedOrder),
    CONVERT(FORMAT(CALCULATE(SUM(data[Sum of Closed Order]), data[Month] = SelectedOrder), "#,##0"),STRING),
    CONVERT(FORMAT(SUM(data[Sum of Closed Order]), "#,##0"),STRING)
)

//

SelectedOrderSum = CONVERT(SELECTEDVALUE(data[Sum of Closed Order],data[SelectedOrders]),STRING)&lt;/LI-CODE&gt;&lt;P&gt;As you can see all of these formulas produce the expected visual interaction when the measure is placed in a seperate visual but do not update when used as the conditional formating measure.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 20:24:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4617180#M176693</guid>
      <dc:creator>ClaytonLFA</dc:creator>
      <dc:date>2025-03-19T20:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatting Subtitle - Measure not updating via visual interaction</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4617318#M176705</link>
      <description>&lt;LI-CODE lang="markup"&gt;I am trying to make a line chart visualization that reports the value in the subtitle&lt;/LI-CODE&gt;
&lt;P&gt;Which value? A line chart by definition has multiple values.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 23:47:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4617318#M176705</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-03-19T23:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatting Subtitle - Measure not updating via visual interaction</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4618450#M176745</link>
      <description>&lt;P&gt;Hello, the subtitle is supposed to be a dynamic field that changes as you click an individual point on the line chart. You can see I have clicked the second data point on the line chart and the visual interaction is working with all 3 measures if they are in their own visualizations, however, it does not actually update the in the subtitle.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 15:01:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4618450#M176745</guid>
      <dc:creator>ClaytonLFA</dc:creator>
      <dc:date>2025-03-20T15:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatting Subtitle - Measure not updating via visual interaction</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4618780#M176763</link>
      <description>&lt;P&gt;Looks like the SELECTEDVALUE paradigm does not extend to the line chart visual. Switching to a column chart doesn't help either as it then no longer shows the title or subtitle.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest you raise a ticket.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 19:28:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4618780#M176763</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-03-20T19:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatting Subtitle - Measure not updating via visual interaction</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4685489#M179461</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1242117" data-lia-user-login="ClaytonLFA" class="lia-mention lia-mention-user"&gt;ClaytonLFA&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Has your issue been resolved? If a community member's response addressed your query, please consider marking it as Accepted Answer and click Yes if you found it helpful.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If you have any further questions, feel free to reach out.&lt;BR /&gt;Thank you for being a valued member of the Microsoft Fabric Community Forum!&lt;/P&gt;</description>
      <pubDate>Thu, 08 May 2025 17:55:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4685489#M179461</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-08T17:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional Formatting Subtitle - Measure not updating via visual interaction</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4697364#M179912</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1242117" data-lia-user-login="ClaytonLFA" class="lia-mention lia-mention-user"&gt;ClaytonLFA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;We haven’t heard back from you regarding our previous response and wanted to check if your issue has been resolved.&lt;/P&gt;
&lt;P&gt;If it has, please consider clicking “Accept Answer” and “Yes” if you found the response helpful.&lt;BR /&gt;If you still have any questions or need further assistance, feel free to let us know — we're happy to help!&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 18 May 2025 17:57:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Conditional-Formatting-Subtitle-Measure-not-updating-via-visual/m-p/4697364#M179912</guid>
      <dc:creator>v-aatheeque</dc:creator>
      <dc:date>2025-05-18T17:57:41Z</dc:date>
    </item>
  </channel>
</rss>

