Forum Discussion

NithinBN's avatar
NithinBN
Helper II
5 years ago
Solved

Actual vs Target

Hello All,

 

I have below table, I have defined Targets for each product,

for Bike =800, Cloths = 500, Others =1250,

ProductSales
Bike100
Bike200
Bike300
Bike400
Cloths50
Cloths60
Cloths70
Cloths80
Others250
Others300
Others350
Others400

how can I display table something like this ?

 TargetSales(Sales\Tar)*100
Bike8001000125
Cloths50026052
Others12501600128
Total25502860112

 

Or any other better way to represent ?

  • NithinBN , Load The target into a table with columns

    Product Target

    Create a common product table and join both with Product and then you can analyze sales and target together,

     

    Then you have measure like this and display against the Product from the product table

     

    Sales M= sum(Sales[sales])
    Target M = Sum(Target[Target])

    Diff= divide([Sales M],[Target M])

     

    How to create a bridge/common dimension Table

    https://youtu.be/Bkf35Roman8

     

1 Reply

  • NithinBN , Load The target into a table with columns

    Product Target

    Create a common product table and join both with Product and then you can analyze sales and target together,

     

    Then you have measure like this and display against the Product from the product table

     

    Sales M= sum(Sales[sales])
    Target M = Sum(Target[Target])

    Diff= divide([Sales M],[Target M])

     

    How to create a bridge/common dimension Table

    https://youtu.be/Bkf35Roman8