Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Convert the data Round off and Decimal number on Matrix Visuallization

Hello Guys,

I want to convert the data to fixed decimal number and .1 decimal number on single count value. check the scrrenshot

There is a only one field which is decimal number datatype but I want remove that 3.0, 2.0, 3.0, 1.0 to 3, 2, 3, 1 and the 4th row need to in same format means want to remove that .0 on matrix Visuallzation.

Please let me know if any solution.

Thanks,

Pankil

 

  • Anonymous,

     

    Add a measure as shown below.

    Measure =
    FORMAT ( SUM ( Table1[Value] ), "General Number" )
    

5 Replies

    • Anonymous's avatar
      Anonymous
      Not applicable

      v-chuncz-msft 

       

      Yes I used DAX Function but can't get sucess on this.

      can you please help me with the DAX function.

       

      Thanks for you Support.

      Pankil

      • v-chuncz-msft's avatar
        v-chuncz-msft
        Icon for Community Support rankCommunity Support

        Anonymous,

         

        Add a measure as shown below.

        Measure =
        FORMAT ( SUM ( Table1[Value] ), "General Number" )