Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have 2 tables, and I need DAX to help me get data from Price table to Order table. The "Customer" ,"Plant" ,"Material" in Order table must matched with Price table , and "ETD" should within valid from and valid to, then we can find the correct price.
I try to use below DAX it can get the correct data, but my team member said we cannot use MAXX function, since it's to find the maximum value. Is there any other Dax can help me to get the result?
Solved! Go to Solution.
Hi @Quinn,
In fact, Maxx or other aggregated functions can be used to lookup value from another table.
You can modify the conditions to get one result and it should be the value that you want, or it will return the aggregate value from results that match with conditions.
formula =
VAR currCustomer =
SELECTEDVALUE ( Order[Customer] )
VAR currPlant =
SELECTEDVALUE ( Order[Plant] )
VAR currPN =
SELECTEDVALUE ( Order[PN] )
VAR currDate =
MAX ( Order[ETD] )
RETURN
MAXX (
FILTER (
ALLSELECTED ( 'Price' ),
[Customer] = currCustomer
&& [Plant] = currPlant
&& [Material] = currPN
&& AND ( currDate >= [Valid From], currDate <= [Valid To] )
),
[Condition Amount]
)
Regards,
Xiaoxin Sheng
Hi,
Write this calculated column formula in the Order Table
Correct Price = calculate(max(Price[Condition amount]),filter(Price,Price[Customer]=earlier(Order[Customer])&&Price[Plant]=earlier(Order[Plant])&&Price[Material]=earlier(Order[PN])&&Price[Valid from]<=earlier(Order[ETD])&&Price[Valid To]>=earlier(Order[ETD])))
Hope this helps.
Hi,
Write this calculated column formula in the Order Table
Correct Price = calculate(max(Price[Condition amount]),filter(Price,Price[Customer]=earlier(Order[Customer])&&Price[Plant]=earlier(Order[Plant])&&Price[Material]=earlier(Order[PN])&&Price[Valid from]<=earlier(Order[ETD])&&Price[Valid To]>=earlier(Order[ETD])))
Hope this helps.
Hi,
thanks for your help.
May I know what's the meaning of "earlier", why we should put it in each item first? and if I want to change the "Price[Valid from]<=earlier(Order[ETD])" to Price[Valid from] <= today (), how to write the dax?
Thank you.
You are welcome. EARLIER() can be interpeted as "current row". Write it exactly that way.
Hi @Quinn,
In fact, Maxx or other aggregated functions can be used to lookup value from another table.
You can modify the conditions to get one result and it should be the value that you want, or it will return the aggregate value from results that match with conditions.
formula =
VAR currCustomer =
SELECTEDVALUE ( Order[Customer] )
VAR currPlant =
SELECTEDVALUE ( Order[Plant] )
VAR currPN =
SELECTEDVALUE ( Order[PN] )
VAR currDate =
MAX ( Order[ETD] )
RETURN
MAXX (
FILTER (
ALLSELECTED ( 'Price' ),
[Customer] = currCustomer
&& [Plant] = currPlant
&& [Material] = currPN
&& AND ( currDate >= [Valid From], currDate <= [Valid To] )
),
[Condition Amount]
)
Regards,
Xiaoxin Sheng
User | Count |
---|---|
76 | |
75 | |
45 | |
31 | |
27 |
User | Count |
---|---|
99 | |
89 | |
52 | |
48 | |
46 |