Forum Discussion

uc's avatar
uc
Helper II
4 years ago
Solved

Help with filtering dates

Hello

 

I have two tables namely Contacts and Sales as shown in the example below. I wanted to create a calculated column (Contact after sales date) in Sales table such that only the immediate contact date after the sales date is pulled for each key as shown below.  Can anyone suggest the code that could be used achieve this please? Thanks in advance. 

 

Contact DateKey
01/01/20221
16/01/20222
08/01/20223
29/01/20224
15/01/20221
02/02/20224
19/01/20223
30/01/20222

 

Sales DateKeyContact after Sales date
09/01/2022115/01/2022
24/01/2022230/01/2022
07/01/2022308/01/2022
28/01/2022429/01/2022
  • Hi uc 

     

    Try this code to add a new column with dax:

    Contact after Sales date = 
    CALCULATE (
        MIN ( Contacts[Contact Date] ),
        Contacts[Contact Date] > EARLIER ( Sales[Sales Date] )
    )

     

    Output:



    If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

    Appreciate your Kudos!! 

    LinkedIn | Twitter | Blog | YouTube 

2 Replies

  • Hi uc 

     

    Try this code to add a new column with dax:

    Contact after Sales date = 
    CALCULATE (
        MIN ( Contacts[Contact Date] ),
        Contacts[Contact Date] > EARLIER ( Sales[Sales Date] )
    )

     

    Output:



    If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

    Appreciate your Kudos!! 

    LinkedIn | Twitter | Blog | YouTube 

    • uc's avatar
      uc
      Helper II

      Thankyou so much 🙂