<?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: Label for Multiple Dax Measures in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2016611#M44870</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;I am not entirely certain of what you are trying to do exactly but take a look at this dynamic title measure:&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/The-Most-Amazing-Mind-Blowing-Dynamic-Slicer-Title-Measure-Ever/m-p/429587#M154" target="_blank"&gt;The Most Amazing, Mind Blowing Dynamic Slicer Titl... - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 15 Aug 2021 03:33:56 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2021-08-15T03:33:56Z</dc:date>
    <item>
      <title>Label for Multiple Dax Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2016526#M44869</link>
      <description>&lt;P&gt;Hello PBI Community Good Day!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking for a Dynamic Dax Measure I can use with cards for multiple measures.&lt;/P&gt;&lt;P&gt;In the screen shot below I have 8.&lt;/P&gt;&lt;P&gt;In a perfect world I would like to have only 4 that will change with my calculation slicer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm trying to accomplish:&lt;/P&gt;&lt;P&gt;Currently I have:&lt;/P&gt;&lt;P&gt;4 cards for Trailing Twelve Months&amp;nbsp; (TTM CY, TTM PY (GL) ect...)&lt;/P&gt;&lt;P&gt;and&amp;nbsp;&lt;/P&gt;&lt;P&gt;4 cards for Year to Date ( YTD CY, YTD PY (GL) ect...)&lt;/P&gt;&lt;P&gt;Look for a way to just use 4 cards that will change with my calculation slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please advise if you need additional information for clarity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&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>Sun, 15 Aug 2021 00:06:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2016526#M44869</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-15T00:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Multiple Dax Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2016611#M44870</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;I am not entirely certain of what you are trying to do exactly but take a look at this dynamic title measure:&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/The-Most-Amazing-Mind-Blowing-Dynamic-Slicer-Title-Measure-Ever/m-p/429587#M154" target="_blank"&gt;The Most Amazing, Mind Blowing Dynamic Slicer Titl... - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Aug 2021 03:33:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2016611#M44870</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2021-08-15T03:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Multiple Dax Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2016906#M44887</link>
      <description>&lt;P&gt;You could use a disconnected table for that.&lt;BR /&gt;&lt;BR /&gt;1) Make a table with two values Trailing twelve months and Year to date.&lt;BR /&gt;2) Make a slicer using this column&lt;BR /&gt;3) Build a dynamic measure that will change depending on the slicer selection&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Dynamic_Measure_Card1 = 
--Grab the value from the slicer
VAR _SelectedValue = SELECTEDVALUE( 'DisconnectedTable'[Slicer], "Year to date")

--Change the calculation based on that value
RETURN
SWITCH(
	_SelectedValue,
	"Year to date", [YTD_Measure],
	"Trailing twelve months", [TTM_Measure]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;The only problem with this approach is you'll have to create 4 dynamic measures (for the 4 cards)&lt;BR /&gt;&lt;BR /&gt;A more elegant solution would include Calculation Group but this might be too much for what you are trying to accomplish.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Aug 2021 16:15:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2016906#M44887</guid>
      <dc:creator>m3tr01d</dc:creator>
      <dc:date>2021-08-15T16:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Multiple Dax Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2018594#M44921</link>
      <description>&lt;P&gt;Hello Greg GM - much appreciate your quick response.&lt;/P&gt;&lt;P&gt;Looking for a dynamic dax measure that will update the 4 cards based on what I select per my calculation slicer MTD, QTD, YTD and TTM.&lt;/P&gt;&lt;P&gt;The 4 cards in my screen shot are currently showing my calculation slicer selection TTM.&lt;/P&gt;&lt;P&gt;Does this addition information help to deteemine what I'm trying to accomplish?&lt;/P&gt;&lt;P&gt;Will take a look at your link provided.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 12:56:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2018594#M44921</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-16T12:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: Label for Multiple Dax Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2018627#M44922</link>
      <description>&lt;P&gt;M3trO1d... GM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We appear to be on the same page. Will give your suggestion a try.&lt;/P&gt;&lt;P&gt;Thank you for your quick response!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 13:08:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Label-for-Multiple-Dax-Measures/m-p/2018627#M44922</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-16T13:08:23Z</dc:date>
    </item>
  </channel>
</rss>

