Maxtrix - How to move columns to rows











up vote
1
down vote

favorite












I have a Maxtrix that looks as follows:



enter image description here



And the Visualizations pane looks as follows:



enter image description here



Sales, COGS, GP and GP% are fields in a dataset. The YearMonth field is a field from another dataset.



What I want is for Sales, COGS, GP and GP% to be rows and my only column should be year-month. So I would have a row for Sales and totals for each year and month. And then another row for COGS and totals for each year and month etc. I can't find an easy way to do this because Sales, COGS, GP etc. are not like categories contained in another dataset, linked to this dataset that I could drag to Rows in the Visualization tab.










share|improve this question


























    up vote
    1
    down vote

    favorite












    I have a Maxtrix that looks as follows:



    enter image description here



    And the Visualizations pane looks as follows:



    enter image description here



    Sales, COGS, GP and GP% are fields in a dataset. The YearMonth field is a field from another dataset.



    What I want is for Sales, COGS, GP and GP% to be rows and my only column should be year-month. So I would have a row for Sales and totals for each year and month. And then another row for COGS and totals for each year and month etc. I can't find an easy way to do this because Sales, COGS, GP etc. are not like categories contained in another dataset, linked to this dataset that I could drag to Rows in the Visualization tab.










    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I have a Maxtrix that looks as follows:



      enter image description here



      And the Visualizations pane looks as follows:



      enter image description here



      Sales, COGS, GP and GP% are fields in a dataset. The YearMonth field is a field from another dataset.



      What I want is for Sales, COGS, GP and GP% to be rows and my only column should be year-month. So I would have a row for Sales and totals for each year and month. And then another row for COGS and totals for each year and month etc. I can't find an easy way to do this because Sales, COGS, GP etc. are not like categories contained in another dataset, linked to this dataset that I could drag to Rows in the Visualization tab.










      share|improve this question













      I have a Maxtrix that looks as follows:



      enter image description here



      And the Visualizations pane looks as follows:



      enter image description here



      Sales, COGS, GP and GP% are fields in a dataset. The YearMonth field is a field from another dataset.



      What I want is for Sales, COGS, GP and GP% to be rows and my only column should be year-month. So I would have a row for Sales and totals for each year and month. And then another row for COGS and totals for each year and month etc. I can't find an easy way to do this because Sales, COGS, GP etc. are not like categories contained in another dataset, linked to this dataset that I could drag to Rows in the Visualization tab.







      powerbi






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 14:56









      Randy Minder

      29.6k36142253




      29.6k36142253
























          2 Answers
          2






          active

          oldest

          votes

















          up vote
          2
          down vote



          accepted










          There is a setting for this. Go to the Format tab and turn on 'Show on rows' under the Values section.



          Show on rows






          share|improve this answer





















          • Fan freakin' tastic. This is exactly what I was looking for.
            – Randy Minder
            Nov 12 at 18:08


















          up vote
          0
          down vote













          I would first create a table using Enter Data e.g. All Measures containing 1 column (e.g. Measure Name) and 4 rows, containing Sales , COGS , GP, GP%.



          Then I would create a Measure using the SWITCH function, e.g.



          Any Measure = SWITCH ( 'All Measures'[Measure Name] , "Sales" , [Sales] ,"COGS", [COGS] , "GP" , [GP] , "GP%" , [GP%] )


          Then I would add 'All Measures'[Measure Name] to the Rows well, and replace the Values well with Any Measure.



          You may need to enhance that to get the numeric formats right, e.g. by wrapping each measure reference in a FORMAT function.






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240150%2fmaxtrix-how-to-move-columns-to-rows%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            2
            down vote



            accepted










            There is a setting for this. Go to the Format tab and turn on 'Show on rows' under the Values section.



            Show on rows






            share|improve this answer





















            • Fan freakin' tastic. This is exactly what I was looking for.
              – Randy Minder
              Nov 12 at 18:08















            up vote
            2
            down vote



            accepted










            There is a setting for this. Go to the Format tab and turn on 'Show on rows' under the Values section.



            Show on rows






            share|improve this answer





















            • Fan freakin' tastic. This is exactly what I was looking for.
              – Randy Minder
              Nov 12 at 18:08













            up vote
            2
            down vote



            accepted







            up vote
            2
            down vote



            accepted






            There is a setting for this. Go to the Format tab and turn on 'Show on rows' under the Values section.



            Show on rows






            share|improve this answer












            There is a setting for this. Go to the Format tab and turn on 'Show on rows' under the Values section.



            Show on rows







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 12 at 16:43









            Alexis Olson

            11.3k21633




            11.3k21633












            • Fan freakin' tastic. This is exactly what I was looking for.
              – Randy Minder
              Nov 12 at 18:08


















            • Fan freakin' tastic. This is exactly what I was looking for.
              – Randy Minder
              Nov 12 at 18:08
















            Fan freakin' tastic. This is exactly what I was looking for.
            – Randy Minder
            Nov 12 at 18:08




            Fan freakin' tastic. This is exactly what I was looking for.
            – Randy Minder
            Nov 12 at 18:08












            up vote
            0
            down vote













            I would first create a table using Enter Data e.g. All Measures containing 1 column (e.g. Measure Name) and 4 rows, containing Sales , COGS , GP, GP%.



            Then I would create a Measure using the SWITCH function, e.g.



            Any Measure = SWITCH ( 'All Measures'[Measure Name] , "Sales" , [Sales] ,"COGS", [COGS] , "GP" , [GP] , "GP%" , [GP%] )


            Then I would add 'All Measures'[Measure Name] to the Rows well, and replace the Values well with Any Measure.



            You may need to enhance that to get the numeric formats right, e.g. by wrapping each measure reference in a FORMAT function.






            share|improve this answer

























              up vote
              0
              down vote













              I would first create a table using Enter Data e.g. All Measures containing 1 column (e.g. Measure Name) and 4 rows, containing Sales , COGS , GP, GP%.



              Then I would create a Measure using the SWITCH function, e.g.



              Any Measure = SWITCH ( 'All Measures'[Measure Name] , "Sales" , [Sales] ,"COGS", [COGS] , "GP" , [GP] , "GP%" , [GP%] )


              Then I would add 'All Measures'[Measure Name] to the Rows well, and replace the Values well with Any Measure.



              You may need to enhance that to get the numeric formats right, e.g. by wrapping each measure reference in a FORMAT function.






              share|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                I would first create a table using Enter Data e.g. All Measures containing 1 column (e.g. Measure Name) and 4 rows, containing Sales , COGS , GP, GP%.



                Then I would create a Measure using the SWITCH function, e.g.



                Any Measure = SWITCH ( 'All Measures'[Measure Name] , "Sales" , [Sales] ,"COGS", [COGS] , "GP" , [GP] , "GP%" , [GP%] )


                Then I would add 'All Measures'[Measure Name] to the Rows well, and replace the Values well with Any Measure.



                You may need to enhance that to get the numeric formats right, e.g. by wrapping each measure reference in a FORMAT function.






                share|improve this answer












                I would first create a table using Enter Data e.g. All Measures containing 1 column (e.g. Measure Name) and 4 rows, containing Sales , COGS , GP, GP%.



                Then I would create a Measure using the SWITCH function, e.g.



                Any Measure = SWITCH ( 'All Measures'[Measure Name] , "Sales" , [Sales] ,"COGS", [COGS] , "GP" , [GP] , "GP%" , [GP%] )


                Then I would add 'All Measures'[Measure Name] to the Rows well, and replace the Values well with Any Measure.



                You may need to enhance that to get the numeric formats right, e.g. by wrapping each measure reference in a FORMAT function.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 12 at 0:37









                Mike Honey

                11.3k11328




                11.3k11328






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240150%2fmaxtrix-how-to-move-columns-to-rows%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Full-time equivalent

                    Bicuculline

                    さくらももこ