Forum Discussion
topazz11
6 months agoHelper III
Power Query Look Up Value From Another Table
Power Query Look Up Value From Another Table Based On date and other condition. How do I pick up the value in Type column based on date and item as below? Thanks in advance.
- 6 months ago
topazz11 Hi!
You cna find the solution in the pbix attached.
Let me know.
BBF
๐ก Did I answer your question? Mark my post as a solution!
๐ Kudos are appreciated
๐ฅ Proud to be a Super User!
Ashish_Mathur
6 months agoSuper User
Hi,
This calculated column formula work
=CALCULATE(MAX(Table3[ะขััะต]),FILTER(Table3,Table3[ltem]=EARLIER(Table2[Item])&&Table3[Start]<=EARLIER(Table2[Date])&&Table3[End]>=EARLIER(Table2[Date])))
Hope this helps.