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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
EiA
Frequent Visitor

Calculating historical salesperson

Hi, I have an issue calculating which salesperson was responsible for a client/department when an historic invoice was issued.


My tables are similar to these:

 

Invoices:

InvoiceIDClientDepartmentInvoiceDate
1001A01.01.2023
1011A01.02.2023
1022A01.01.2023

 

Salespersons per Client/Department over time:

ClientDepartmentSalesPersonFromTo
1AJW01.06.202215.01.2023
1AMS16.01.202301.06.2023
2AMS01.01.2022

31.12.2023

 

Is there a way to get a calculated column in Invoices reflecting which salesperson was responsible for Client/department when invoice was issued (based on invoice date)? Meaning Invoice 100 would be assigned JW and 101 would be MS.

 

Or any other better approach?


Thanks a lot!

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

You could create a calculated column like 

Salesperson =
VAR InvoiceDate = 'Invoices'[Invoice Date]
VAR Client = 'Invoices'[Client]
VAR Department = 'Invoices'[Department]
RETURN
    SELECTCOLUMNS (
        FILTER (
            'Salespersons',
            'Salespersons'[Department] = Department
                && 'Salespersons'[Client] = Client
                && 'Salespersons'[From] <= InvoiceDate
                && (
                    'Salespersons'[To] >= InvoiceDate
                        || ISBLANK ( 'Salespersons'[To] )
                )
        ),
        "@val", 'Salespersons'[SalesPerson]
    )

View solution in original post

4 REPLIES 4
johnt75
Super User
Super User

You could create a calculated column like 

Salesperson =
VAR InvoiceDate = 'Invoices'[Invoice Date]
VAR Client = 'Invoices'[Client]
VAR Department = 'Invoices'[Department]
RETURN
    SELECTCOLUMNS (
        FILTER (
            'Salespersons',
            'Salespersons'[Department] = Department
                && 'Salespersons'[Client] = Client
                && 'Salespersons'[From] <= InvoiceDate
                && (
                    'Salespersons'[To] >= InvoiceDate
                        || ISBLANK ( 'Salespersons'[To] )
                )
        ),
        "@val", 'Salespersons'[SalesPerson]
    )
EiA
Frequent Visitor

Excellent @johnt75  - seems to work exactly as intended! Thank you

Hello,

 

The best way (IMO) is to join the 2 tables directly in an SQL query.

it would be something like :

A JOIN B on A.invoice_date >= b.from and a.invoice_date < b.to

 

< or <= depends on the original data model 🙂

 

Thanks for the suggestion @Thomas_Daubert , I don't have access to SQL directly, but I am sure this could have worked well too

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!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.