Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
NithinBN
Helper II
Helper II

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 ?

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@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

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.