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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bmbhelper
Regular Visitor

Calculate - Apply filter based on a IF condition

Hi Guys,

 

I don't know how to explain or title this. Let me give you my best shot.

 

I have a set of sales data, I want to create a measure that takes Qty * sale price per sku. Now the Issue is that the sale price changes every period.

 

How can I make a measure where the filter is dynamic according to the period inwhich the sale happened.

Something like this

Sales:=Qty times (sale price filtered by the sale's period price).

 

Does that make sense?

 

 

Raw Data   
CustomerProductPeriodQty
JohnProduct APeriod 120
JoeProduct BPeriod 21
GeoProduct APeriod 310
MaryProduct CPeriod 45
PatrickProduct CPeriod 58

 

 

Product Table   
ProductPeriod 1Period 2Period 3
Product A1.51.52
Product B1.51.552
Product C21.52

 

 

Thank you in advance!! 

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@bmbhelper,

 

Right click [Product] column from Product Table and select Unpivot Other Columns in Query Editor, then add a calculated column to Raw Data.

Price =
LOOKUPVALUE (
    'Product Table'[Value],
    'Product Table'[Product], 'Raw Data'[Product],
    'Product Table'[Attribute], 'Raw Data'[Period]
)
Measure =
SUMX ( 'Raw Data', 'Raw Data'[Qty] * 'Raw Data'[Price] )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@bmbhelper,

 

Right click [Product] column from Product Table and select Unpivot Other Columns in Query Editor, then add a calculated column to Raw Data.

Price =
LOOKUPVALUE (
    'Product Table'[Value],
    'Product Table'[Product], 'Raw Data'[Product],
    'Product Table'[Attribute], 'Raw Data'[Period]
)
Measure =
SUMX ( 'Raw Data', 'Raw Data'[Qty] * 'Raw Data'[Price] )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
bmbhelper
Regular Visitor

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors