<?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 Combining Values to Display in a Line Chart in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615335#M32526</link>
    <description>&lt;P&gt;I am new to Power BI, and have a&amp;nbsp;&lt;STRONG&gt;line chart&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;that I would like to display the tickets that are marked with the status:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Open&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Closed&lt;/STRONG&gt;/&lt;STRONG&gt;Resolved.&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Closed and Resolved are different statuses, however I would like to combine the values for each month's number of tickets marked as this because they basically have the same meaning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I combine the Closed &amp;amp; Resolved values, so that it only displays as a single line instead of 2 separate ones (as shown below)?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would appreciate your help!&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jan 2021 22:58:14 GMT</pubDate>
    <dc:creator>Caiz</dc:creator>
    <dc:date>2021-01-21T22:58:14Z</dc:date>
    <item>
      <title>Combining Values to Display in a Line Chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615335#M32526</link>
      <description>&lt;P&gt;I am new to Power BI, and have a&amp;nbsp;&lt;STRONG&gt;line chart&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;that I would like to display the tickets that are marked with the status:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Open&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Closed&lt;/STRONG&gt;/&lt;STRONG&gt;Resolved.&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Closed and Resolved are different statuses, however I would like to combine the values for each month's number of tickets marked as this because they basically have the same meaning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I combine the Closed &amp;amp; Resolved values, so that it only displays as a single line instead of 2 separate ones (as shown below)?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would appreciate your help!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 22:58:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615335#M32526</guid>
      <dc:creator>Caiz</dc:creator>
      <dc:date>2021-01-21T22:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Values to Display in a Line Chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615456#M32539</link>
      <description>&lt;P&gt;hey try a measure like this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;measure = calculated(sum(columnvalue),status="Closed") +&amp;nbsp;calculated(sum(columnvalue),status="Resolved")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if this solved your question please give some kudos and mark as solution for others to find it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 01:13:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615456#M32539</guid>
      <dc:creator>StefanoGrimaldi</dc:creator>
      <dc:date>2021-01-22T01:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Values to Display in a Line Chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615558#M32545</link>
      <description>&lt;P&gt;Hi Stefano, if I used calculate I get the error: &lt;EM&gt;"A function 'CALCULATE' has been used in a True/False expression that is used as a table filter expression. This is not allowed."&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same with &lt;STRONG&gt;FILTER&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;EM&gt;function 'FILTER' has been used in a True/False expression that is used as a table filter expression. This is not allowed.&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;ClosedResolved = CALCULATE(SUM('Tickets'[Status]), FILTER ('Tickets', 'Tickets'[Status] = "Closed") + CALCULATE(SUM('Tickets'[Status]), FILTER ('Tickets', 'Tickets'[Status] = "Resolved")))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 02:23:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615558#M32545</guid>
      <dc:creator>Caiz</dc:creator>
      <dc:date>2021-01-22T02:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Values to Display in a Line Chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615566#M32547</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;works fine for me, can you share how you writed the dax?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 02:38:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615566#M32547</guid>
      <dc:creator>StefanoGrimaldi</dc:creator>
      <dc:date>2021-01-22T02:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Combining Values to Display in a Line Chart</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615580#M32549</link>
      <description>&lt;P&gt;Thanks for your help, it works now! I changed it from SUM to &lt;STRONG&gt;COUNT&lt;/STRONG&gt;:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Closed &amp;amp; Resolved = CALCULATE(COUNT('Tickets'[Status]), 'Tickets'[Status] = "Closed") + CALCULATE(COUNT('Tickets'[Status]), 'Tickets'[Status] = "Resolved")&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 22 Jan 2021 02:47:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Combining-Values-to-Display-in-a-Line-Chart/m-p/1615580#M32549</guid>
      <dc:creator>Caiz</dc:creator>
      <dc:date>2021-01-22T02:47:39Z</dc:date>
    </item>
  </channel>
</rss>

