Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have a price list like this
and I have a sell table
The final table should be like this
I have created a key-word "product_date" --> for example a_05/2020 or a_07/2020 but I don't know how connect key-words without connection.
Have you some ideas?
Thank you all
Solved! Go to Solution.
@giuliapiazza94 This is essentially Lookup Min/Max: https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/m-p/985814#M434
So, in your case:
Column =
VAR __Date = 'SELL'[date]
VAR __Product = 'SELL'[product]
VAR __PriceDate = MAXX(FILTER('Table-Price',[product]=__Product && [date]<=__Date),[date])
RETURN
MAXX(FILTER('Table-Price',[product]=__Product && [date]=__PriceDate),[price])
@giuliapiazza94 This is essentially Lookup Min/Max: https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/m-p/985814#M434
So, in your case:
Column =
VAR __Date = 'SELL'[date]
VAR __Product = 'SELL'[product]
VAR __PriceDate = MAXX(FILTER('Table-Price',[product]=__Product && [date]<=__Date),[date])
RETURN
MAXX(FILTER('Table-Price',[product]=__Product && [date]=__PriceDate),[price])
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |