Forum Discussion

blytonpereira's avatar
blytonpereira
Helper II
7 years ago
Solved

Concatanate Measure and Text string in DAX

I have a measure which calculates the percentage such as: X=a/b I then format the result as a % with 0 decimal places (so a whole number percentage) I then created a measure (Text string and result...
  • themistoklis's avatar
    themistoklis
    7 years ago

    How about this:

     

    Y = "MAPE " & FORMAT([X], "0%")