<?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: Need Help with Data Over Time using Line Graph in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929148#M445285</link>
    <description>&lt;P&gt;Got it. thanks for the help!&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="58848" data-lia-user-login="ChrisMendoza" class="lia-mention lia-mention-user"&gt;ChrisMendoza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Feb 2020 21:54:15 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-02-11T21:54:15Z</dc:date>
    <item>
      <title>Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/906893#M434648</link>
      <description>&lt;P&gt;Hello There,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to Power BI and I just want to graph basic sales by period for each account.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I imported an excel table with column A being the accounts, and columns B-N being periods 1-13 and the sales $ for each account by period.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However I want to use the Periods as both the Value and the X axis, however it is forcing me to use the accounts as the x axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an easy way to get around this without reformatting in excel?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I greatly appreciate the help!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 17:54:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/906893#M434648</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T17:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/906907#M434654</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You would do your data manipulation of the cross tabulated (pivoted) data in the Power Query Editor.&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;Something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("PY9BDgAhCAP/4nkPggLyFuNB/f8flrLJXhpSaCfMWfbe5SnKGjq8hlpvoSwE36DMHb4bHMG2i4dShwrBaYoGJirrmeWcg4SgzzUTFR3a0GctCSNprtnB4KslX/97tySEg9Z7L/aKDs+cViT6dzW+9MCsAkJLQn5CVv9/KP0WP6z1Ag==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [accounts = _t, #"1" = _t, #"2" = _t, #"3" = _t, #"4" = _t, #"5" = _t, #"6" = _t, #"7" = _t, #"8" = _t, #"9" = _t, #"10" = _t, #"11" = _t, #"12" = _t, #"13" = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"accounts", type text}, {"1", Int64.Type}, {"2", Int64.Type}, {"3", Int64.Type}, {"4", Int64.Type}, {"5", Int64.Type}, {"6", Int64.Type}, {"7", Int64.Type}, {"8", Int64.Type}, {"9", Int64.Type}, {"10", Int64.Type}, {"11", Int64.Type}, {"12", Int64.Type}, {"13", Int64.Type}}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"accounts"}, "Attribute", "Value"),
    #"Renamed Columns" = Table.RenameColumns(#"Unpivoted Other Columns",{{"Attribute", "Period"}, {"Value", "Sales"}}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Renamed Columns",{{"Period", Int64.Type}})
in
    #"Changed Type1"&lt;/LI-CODE&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>Tue, 21 Jan 2020 18:06:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/906907#M434654</guid>
      <dc:creator>ChrisMendoza</dc:creator>
      <dc:date>2020-01-21T18:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/906928#M434665</link>
      <description>&lt;P&gt;Thanks for the quick response! So the data currently is just in an excel table which I am uploading to Power BI.&lt;/P&gt;&lt;P&gt;&amp;nbsp;This is the result I am getting.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you elaborate a little more on your solution please? I apologize, I'm new to this and very green.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 21:55:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/906928#M434665</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-11T21:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/906943#M434674</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No worries. This table is not setup in a way that is helpful. I propose you should:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;'Edit Queries' to get to the Power Query Editor.&lt;UL&gt;&lt;LI&gt;You will see exactly the same table but in the Editor&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Right-Click column [ACCOUNT]&lt;UL&gt;&lt;LI&gt;Select and Click 'Unpivot Other Columns&lt;/LI&gt;&lt;LI&gt;You should now see 3 columns (e.g. [ACCOUNT], [Attribute], [Value]&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;[Attribute] = your period names&lt;/LI&gt;&lt;LI&gt;[Value] = your sales amounts&lt;/LI&gt;&lt;LI&gt;You will likely need to change Data Types; for your [Value] to Whole Number, Decimal, etc.; You could also change the&amp;nbsp;&lt;EM&gt;column names&lt;/EM&gt; at this point to something more meaningful.&lt;/LI&gt;&lt;/UL&gt;&lt;BLOCKQUOTE&gt;&lt;BR /&gt;Anonymous&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;You'll likely encounter a sorting issue on your periods where {p1, p10, p11, p12, p13, p2, ..., p9}. It would be better if you could sort the column by a numeric value; when you get there we can assist at that point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your Visualizations tab should show something like:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 18:43:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/906943#M434674</guid>
      <dc:creator>ChrisMendoza</dc:creator>
      <dc:date>2020-01-21T18:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/907050#M434720</link>
      <description>&lt;P&gt;This worked perfectly! Thank you for the detailed explanation.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 20:34:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/907050#M434720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T20:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929026#M445217</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="58848" data-lia-user-login="ChrisMendoza" class="lia-mention lia-mention-user"&gt;ChrisMendoza&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I now have included this data and I now want to make sure the x axis values are in the order I want. so P1-P13 in order.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created another table and did a one to many link from my sort table, which has P1-1, P2-2 etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is linked to my Table with the values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I then tried to use theperiod from my new table as the x axis, but it still isn't in correct order. Could you please advise on what I am missing?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 19:38:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929026#M445217</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-11T19:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929050#M445231</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;-&lt;/P&gt;&lt;P&gt;Check what the &lt;EM&gt;Sort&lt;/EM&gt; is on the actual visual. Seems like the visual is set on &lt;STRONG&gt;GSV $&lt;/STRONG&gt; descending.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 20:08:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929050#M445231</guid>
      <dc:creator>ChrisMendoza</dc:creator>
      <dc:date>2020-02-11T20:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929139#M445280</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="58848" data-lia-user-login="ChrisMendoza" class="lia-mention lia-mention-user"&gt;ChrisMendoza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the follow up!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below are the screenshots. I believe I followed the process exactly as I've seen it on here but I must be m&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 21:54:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929139#M445280</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-11T21:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with Data Over Time using Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929148#M445285</link>
      <description>&lt;P&gt;Got it. thanks for the help!&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="58848" data-lia-user-login="ChrisMendoza" class="lia-mention lia-mention-user"&gt;ChrisMendoza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 21:54:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Need-Help-with-Data-Over-Time-using-Line-Graph/m-p/929148#M445285</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-11T21:54:15Z</dc:date>
    </item>
  </channel>
</rss>

