Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Concatenate Measure and Text

Hello,

 

Could you please answer the following:

I was trying to create a calculation showing SUM(Montant Facturable) and the Currency, and the reason why I'm using this method not the default Number Formatting is that Gaia is a Number and Montant is Currency; so when I select Montant, I would like to see 2 decimals and Euro currency, 

 

Thank you, 

 

  • Hi Anonymous ,

    Not sure if I understand exactly what you are asking, however when you create a measure you will have control over the format by going to the Modeling tab and selecting the Format.
    Let me know if you have any questions.

    If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
    Nathaniel

     

  • Anonymous's avatar
    Anonymous
    6 years ago
    Reporting Period = IF(ISFILTERED(DATES[Reporting Period]),
    CONCATENATE("Reporting Period: ",SELECTEDVALUE(DATES[Reporting Period])))

4 Replies

  • Nathaniel_C's avatar
    Nathaniel_C
    Community Champion

    Hi Anonymous ,

    Not sure if I understand exactly what you are asking, however when you create a measure you will have control over the format by going to the Modeling tab and selecting the Format.
    Let me know if you have any questions.

    If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
    Nathaniel

     

  • You can use

    format ( <your formaul>,"###.##") & "<Currency symbol>"
    • Anonymous's avatar
      Anonymous
      Not applicable
      Reporting Period = IF(ISFILTERED(DATES[Reporting Period]),
      CONCATENATE("Reporting Period: ",SELECTEDVALUE(DATES[Reporting Period])))