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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
LALO_PTY
New Member

Diff between values same column, based on value from another column NOT DATE

Hellos community,

 

New here. I am trying with no success with calculate to make variance of values. Actual vs Budget, Actual vs Forecast and Actual vs Previous Year. 

 

All data is in the same column and there are a column for date and other for type of value (forecast, actual or budget). See picture below. 

LALO_PTY_0-1682266731208.png

how can I do that?

 

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

or if you do not want transformation your table, then you need to write the following measures:

BUDGET = CALCULATE(SUM('Table'[ VALUE]),'Table'[VALUE TYPE]="BUDGET")
FORECAST = CALCULATE(SUM('Table'[ VALUE]),'Table'[VALUE TYPE]="FORECAST")
ACTUAL =  CALCULATE(SUM('Table'[ VALUE]),'Table'[VALUE TYPE]="ACTUAL")

View solution in original post

3 REPLIES 3
Ahmedx
Super User
Super User

or if you do not want transformation your table, then you need to write the following measures:

BUDGET = CALCULATE(SUM('Table'[ VALUE]),'Table'[VALUE TYPE]="BUDGET")
FORECAST = CALCULATE(SUM('Table'[ VALUE]),'Table'[VALUE TYPE]="FORECAST")
ACTUAL =  CALCULATE(SUM('Table'[ VALUE]),'Table'[VALUE TYPE]="ACTUAL")
Ahmedx
Super User
Super User

You first need to transformation your table for this, see my video, and then you can create simple measures
https://1drv.ms/v/s!AiUZ0Ws7G26Rh0DmynvfwdeQja5G?e=d7efBH

Thanks a lot Ahmedx

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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