Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago

How to union two measures

Hi,

I have two measures.

1.sum of sales(%)

2.Goal(%)

 

I want to show four months of sales in a bar chart visual along with Goal bar .

Something like this  as below

four blue bars are sum of sales and green bar is goal.

I want to show the goal for current period

Please i need help as quick as 

 

8 Replies

  • Anonymous , create a measure that only shows a goal for the current period and sales which does not show for the current period and but them on the clustered bar visual

  • Anonymous's avatar
    Anonymous
    Not applicable

    HI Anonymous 

     

    I would create two charts and place them side by side with no borders. first chart with Bluedata and second one with green data considering you already have the below calculated values.

    1.sum of sales(%)

    2.Goal(%)

     

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      We did like that but after we are facing issue to export the data.

      Is it posibble to export  the data in one excel to see both sales and goals data?

  • v-deddai1-msft's avatar
    v-deddai1-msft
    Icon for Community Support rankCommunity Support

    Hi Anonymous ,

     

    I suggest you use clustered column chart. And you can change your Goal(%) measure to 

     

    NEWGoal(%) = IF(MAX(Table[Column]) = "FY21Q2",[Goal(%)],0)

     

    And you visual will be like:

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

    Best Regards,

    Dedmon Dai

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      It showing error message as below 

      "Dax comparison operations do not support comparing values of type number with value of type text consider using the value or format function to convert one of the values."

       

  • Anonymous's avatar
    Anonymous
    Not applicable

    Please help me if anyone know the solution of this problem.

    • v-deddai1-msft's avatar
      v-deddai1-msft
      Icon for Community Support rankCommunity Support

      Hi Anonymous ,

       

      What is the data type of your x-axis value? It must be  text in your sample screenshot.

       

      Best Regards,

      Dedmon Dai