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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

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