Forum Discussion

deeksha's avatar
deeksha
Icon for Helper II rankHelper II
6 years ago

Remove total from the measure

Hi,

I have created a measure to calculate the sales revenue, but I do not want the total in the report, and in the other measures too, i don't want the total in the report, How to remove the total for the measur

11 Replies

  • Hi,

     

    You can disable the total in the visualization objects you are using. For examle, in a matriz:

     

     

    If it helps, pls give a kudo and mark as the solution. Thanks

     

     

    • deeksha's avatar
      deeksha
      Icon for Helper II rankHelper II

      but there is no option of subTotals.

      • mauriciosotero's avatar
        mauriciosotero
        Icon for Resolver III rankResolver III

        Hi,

         

        Which visualization object are you using (chart, matrix, etc)? Did you click on it and navigate on the Visualization pane as I a shown and the last post?

  • Anonymous's avatar
    Anonymous
    Not applicable

    If you want a quick fix to not show the total of only 1 column. Go to visual settings > specific column > only check the: Apply on total > make the text color the same as your background (probably white). 
    Now the total is still there, you just can't see it.

    • JeanSodre's avatar
      JeanSodre
      Regular Visitor

      Really clever ! It helped me a lot !

      Thanks

  • sspulsifer's avatar
    sspulsifer
    Frequent Visitor

    Has anyone found how to do this for measures?  I can choose "Don't summarize" for data fields, but it doesn't appear as an option for measures.

    • PaulDBrown's avatar
      PaulDBrown
      Icon for Community Champion rankCommunity Champion

      Use the ISINSCOPE function. Say you have a field ina visual which is Table[Category] and a measure for [Sum Sales]. You can exclude totals by using a measure along the lines of:

      Exclude totals = IF(ISINSCOPE (Table[Category]), [Sum Sales])