Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Using var and format

Hi Community, 

 

I'm trying to create measures using variables in Power BI, but in the final result I'm not able to save the result as a numerical value which is not allowing me to aggregate the values. I used format and values both the options.

 

Please help how to fix this.

 

 

  • Remove the call to FORMAT() as that is what is converting the result to a string. Instead set the formatting of the measure using the Formatting section of the Modeling tab in the ribbon

4 Replies

  • mussaenda's avatar
    mussaenda
    Community Champion

    Anonymous,

     

    Please provide more details so everyone can help you better.

  • Anonymous's avatar
    Anonymous
    Not applicable
     

    RETURN
    SWITCH(TRUE(),
    MAX('P&L MAPPING'[ACC DESCRIPTION])="TOTALVOLLY",FORMAT(TOTALVOL_LY,"###0.##0"),
    MAX('P&L MAPPING'[ACC DESCRIPTION])="TOTALGTOLY",FORMAT(TOTALGTO_LY/1000,"###0.##0")


    RETURN
    SWITCH(TRUE(),
    MAX('P&L MAPPING'[ACC DESCRIPTION])="TOTALVOLLY",VALUE(FORMAT(TOTALVOL_LY,"###0.##0")),
    MAX('P&L MAPPING'[ACC DESCRIPTION])="TOTALGTOLY",VALUE(FORMAT(TOTALGTO_LY/1000,"###0.##0"))

     

    • v-frfei-msft's avatar
      v-frfei-msft
      Community Support

      Hi Anonymous ,

       

      Please format the value here.

       

      If it doesn't meet your requirement,  kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

       

    • d_gosbell's avatar
      d_gosbell
      Super User

      Remove the call to FORMAT() as that is what is converting the result to a string. Instead set the formatting of the measure using the Formatting section of the Modeling tab in the ribbon