Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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]
)