Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 | |||
Customer | Product | Period | Qty |
John | Product A | Period 1 | 20 |
Joe | Product B | Period 2 | 1 |
Geo | Product A | Period 3 | 10 |
Mary | Product C | Period 4 | 5 |
Patrick | Product C | Period 5 | 8 |
Product Table | |||
Product | Period 1 | Period 2 | Period 3 |
Product A | 1.5 | 1.5 | 2 |
Product B | 1.5 | 1.55 | 2 |
Product C | 2 | 1.5 | 2 |
Thank you in advance!!
Solved! Go to Solution.
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] )
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] )
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
75 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |