Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
TonyR
Frequent Visitor

Last SoldBy salesperson

Hi,

Based on the simple table table structure below can some show me an example of the dax forum that will show which salesperson last sold to that customer. It would be added as a column\measure to the customer table.

Thank you

Tony

 

 

 

2017-03-27_17-20-34.png

 

 

Invoice 

 

 

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@DoubleJ

 

Hi, my alternative solution would be a measure like this:

 

LastSoldBy =
CALCULATE (
    VALUES ( Sales[SalesPerson] ),
    FILTER ( RELATEDTABLE ( Sales ), Sales[InVDate] = MAX ( Sales[InVDate] ) )
)

 




Lima - Peru

View solution in original post

3 REPLIES 3
DoubleJ
Solution Supplier
Solution Supplier

Hi

 

I think a new column with this formula should do what you want:

 

LastSoldBy = LOOKUPVALUE(
    Sales[SalesPerson];
    Sales[InvDate];MAXX(RELATEDTABLE(Sales);Sales[InvDate]);
    Customers[CustomerID];Customers[CustomerID]
    )

 

I am sure there's a better solution and I am curious to see it myself. Anyway, I hope this helps for now.

 

JJ

Vvelarde
Community Champion
Community Champion

@DoubleJ

 

Hi, my alternative solution would be a measure like this:

 

LastSoldBy =
CALCULATE (
    VALUES ( Sales[SalesPerson] ),
    FILTER ( RELATEDTABLE ( Sales ), Sales[InVDate] = MAX ( Sales[InVDate] ) )
)

 




Lima - Peru

Hi Victor 

 

Thanks for sharing, your solution probably is faster!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.