Forum Discussion

KelvinMorel's avatar
KelvinMorel
Helper II
7 years ago
Solved

Percent Measure higher than 100%

Hi,

 

It's maybe really basic but I can't get around it, this is my measure:

Sales% = DIVIDE(SUM(Sales2018[Investment]);SUM(Sales2017[Investment]))

In some of cases this will get value higher than 100% (like 116%) but I would like to this play this value as +16%, is there some way to do this?

2 Replies

    • KelvinMorel's avatar
      KelvinMorel
      Helper II

      Hei 

       

       

      Sales% = (DIVIDE(SUM(Sales2018[Investment]);SUM(Sales2017[Investment]))-1)

       

      Sales%Sign = IF([Sales%]>0;"+"&ROUND(([Sales%]*100);0)&"%";ROUND([Sales%]*100;0)&"%")