Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi there. Converting from Tableau, so please be gentle!
I have two tables:-
In the ORDER table, I am wanting to return the nearest [DEPT] match based on the DEPT table.
So for Case Refs 123 and 456, it should return "A" as the [Order Date] falls between the [Date Change] dates in the DEPT table.
Cases 789 and 987, returns "B" and so forth.
I have the DEPT table sorted by [Name] then ascending [DATE CHANGE].
Many thanks for your valued advice in advance. 🙂
Solved! Go to Solution.
Hi, I am not sure how your datamodel looks like but please check the below if it suits your requirement.
It is for creating a new column.
Department CC =
MAXX (
FILTER (
Department,
Department[Date Change]
= MAXX (
FILTER (
Department,
Department[Name] = 'Order'[Name]
&& Department[Date Change] <= 'Order'[Order Date]
),
Department[Date Change]
)
),
Department[Dept]
)
Hi, I am not sure how your datamodel looks like but please check the below if it suits your requirement.
It is for creating a new column.
Department CC =
MAXX (
FILTER (
Department,
Department[Date Change]
= MAXX (
FILTER (
Department,
Department[Name] = 'Order'[Name]
&& Department[Date Change] <= 'Order'[Order Date]
),
Department[Date Change]
)
),
Department[Dept]
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 21 | |
| 10 | |
| 7 | |
| 7 |