Forum Discussion

AUS2029's avatar
AUS2029
Regular Visitor
7 years ago
Solved

PBI only recognize % as Text type after using Dax: Format ( value, "0.0%) - Help

  Used below DAX to format set of numbers, inorder to show percentage as percentage, number as numbers.  Value =  if([Value]<-1,[Value],if([Value]<1,FORMAT([Value],"0.0%"),[Value]))   eg: ...
  • tex628's avatar
    7 years ago

    The FORMAT() syntax always converts the value to string. So if your aim is to make calculations it is not possible to use FORMAT().

    To my knowledge you will not be able to mix percentage with number formatting while still maintaining numeric format on your column/measure.