Forum Discussion

dashboard-1's avatar
dashboard-1
New Member
4 years ago
Solved

Formatting Y-axis

Hi all, 

 

I have been trying to add a € sign before a value, based on a slicer selection. To do this, I created a measure and used the function FORMAT(x, €#.##). However, it gives me an error. 

 

Can somebody help? 

 

  • Hi, dashboard-1 ;

    IF you want show in graph, you could create two measures ,because one measure only show one type unless use format. so please try two measures:

    Dynamic Display1 =
    VAR selectitem =
        IF ( HASONEVALUE ( Selector[Type] ), VALUES ( Selector[Type] ), BLANK () )
    RETURN
        SWITCH ( selectitem, "Cost", SUM ( [Cost] ) )
    
    Dynamic Display2 =
    VAR selectitem =
        IF ( HASONEVALUE ( Selector[Type] ), VALUES ( Selector[Type] ), BLANK () )
    RETURN
        SWITCH ( selectitem, "number", SUM ( [number] ), BLANK () )
    

    Then change measure1 type

    The final output is shown below:

     

    Best Regards,
    Community Support Team_ Yalan Wu
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

5 Replies

  • v-yalanwu-msft's avatar
    v-yalanwu-msft
    Community Support

    Hi, dashboard-1 ;

    IF you want show in graph, you could create two measures ,because one measure only show one type unless use format. so please try two measures:

    Dynamic Display1 =
    VAR selectitem =
        IF ( HASONEVALUE ( Selector[Type] ), VALUES ( Selector[Type] ), BLANK () )
    RETURN
        SWITCH ( selectitem, "Cost", SUM ( [Cost] ) )
    
    Dynamic Display2 =
    VAR selectitem =
        IF ( HASONEVALUE ( Selector[Type] ), VALUES ( Selector[Type] ), BLANK () )
    RETURN
        SWITCH ( selectitem, "number", SUM ( [number] ), BLANK () )
    

    Then change measure1 type

    The final output is shown below:

     

    Best Regards,
    Community Support Team_ Yalan Wu
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • selimovd's avatar
    selimovd
    Most Valuable Professional

    Hey dashboard-1 ,

     

    the format itself has to be in quotes.

    Try it like this:

    FORMAT(x, "€#.##")

     

    If you need any help please let me know.
    If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
     
    Best regards
    Denis
     
    • dashboard_1's avatar
      dashboard_1
      Frequent Visitor

      Hi, 

       

      Thanks for your reply.

       

      I'm trying to convert to a currency when cost is selected at the slicer. The full formula is:

      Dynamic Display =
      var selectitem=IF(HASONEVALUE(Selector[Type]),VALUES(Selector[Type]),BLANK())
      return
      SWITCH(selectitem,"Cost",FORMAT([Cost],€#.##),"number",[number],BLANK())
       
      This is working in a table, but not a graph.
       
      So, with a slicer you can select what value, cost or number, will be shown in the graph. 
      The only problem is, that by using FORMAT, the number will go to a text value. And a text value will not be shown in a graph.

      I also tried the CURRENCY function, but that is not doing anything. 
       
      I hope you can help me... If you choose cost, then the value needs to convert to currency. If you choose number, the value needs to convert to double.
       
      Best regards,
      Kelly
  • v-yalanwu-msft's avatar
    v-yalanwu-msft
    Community Support

    Hi, dashboard-1 ;

    Would you mind accept the helpful replies as solutions? Then we are able to close the thread. More people who have the same requirement will find the solution quickly and benefit here. Thank you.

    Best Regards,
    Community Support Team_ Yalan Wu
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.