Forum Discussion

lennox25's avatar
lennox25
Post Patron
2 years ago
Solved

Help to create % Measure

I have created a % measure as follows : % of Yellow = divide([No of Yellow],[Count of Category])*100-100    The result is correct when unformatted and left as general- however it is showing a min...
  • TomMartens's avatar
    2 years ago

    Hey lennox25 ,

     

    if you want to use the format as "percentage" option, do not multiply by 100. If you want to show the result as poisitive consider using the ABS function like so:

    % of Yellow = ABS(divide([No of Yellow],[Count of Category])-1)

    Hopefully, this provides what you are looking for.

    Regards,

    Tom