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
PowerStrang3r
New Member

Sales per customer that happened outside their subscription time

Hello Community!

Im fairly new with DAX, and I am dying to get help with this problem!

I am trying to find out:

1. Distinct count of the customers who purchased Product A, OUTSIDE their subscription time.
2. Count of the purchases (Product A) they made OUTSIDE their subscription time 

My data model is very simple:

Customer table (relation 1 - * w/ CustomerID) Sales table (relation * - 1 w/Date) Date Table
Customer table (relation 1 - * w/ CustomerID) Subscriptions table 

One customer can have two different subscriptions on and off (SubscriptionA, SubscriptionB), which have starting date and ending date. Some are still active and they dont have an ending date.
At any time they can also make purchases (Product A) and Im interested to find out only those which have been made outside these subscription times. Note, that some customers have never been subscribers, only bought Product A. I need these as well.

Hope I was clear with me explanation and someone has time to help with this 🙂

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

You could create a measure like 

Purchases outside subscriptions =
VAR CustWithSub =
    FILTER (
        VALUES ( 'Customer'[Customer ID] ),
        NOT ISEMPTY ( RELATEDTABLE ( 'Subscription' ) )
    )
VAR CustWithoutSub =
    FILTER (
        VALUES ( 'Customer'[Customer ID] ),
        ISEMPTY ( RELATEDTABLE ( 'Subscription' ) )
    )
VAR CustWithDates =
    GENERATE (
        CustWithSub,
        VAR CustID = 'Customer'[Customer ID]
        VAR SubAStart =
            LOOKUPVALUE (
                'Subscription'[Start date],
                'Subscription'[Customer ID], CustID,
                'Subscription'[Type], "Subscription A",
                MAX ( 'Date'[Date] )
            )
        VAR SubAEnd =
            LOOKUPVALUE (
                'Subscription'[End date],
                'Subscription'[Customer ID], CustID,
                'Subscription'[Type], "Subscription A"
            )
        VAR SubBStart =
            LOOKUPVALUE (
                'Subscription'[Start date],
                'Subscription'[Customer ID], CustID,
                'Subscription'[Type], "Subscription B",
                MAX ( 'Date'[Date] )
            )
        VAR SubBEnd =
            LOOKUPVALUE (
                'Subscription'[End date],
                'Subscription'[Customer ID], CustID,
                'Subscription'[Type], "Subscription B"
            )
        VAR SubADates =
            DATESBETWEEN ( 'Date'[Date], SubAStart, SubAEnd )
        VAR SubBDates =
            DATESBETWEEN ( 'Date'[Date], SubBStart, SubBEnd )
        RETURN
            UNION (
                EXCEPT ( VALUES ( 'Date'[Date] ), SubADates ),
                EXCEPT ( VALUES ( 'Date'[Date] ), SubBDates )
            )
    )
VAR NumPurchasesWithoutSub =
    CALCULATE ( COUNTROWS ( 'Sales' ), CustWithoutSub )
VAR NumPurchasesWithSub =
    CALCULATE (
        COUNTROWS ( 'Sales' ),
        TREATAS ( CustWithDates, 'Customer'[Customer ID], 'Date'[Date] )
    )
RETURN
    NumPurchasesWithoutSub + NumPurchasesWithSub

to give you the number of purchases. And then create a measure like

Num customers =
COUNTROWS (
    FILTER (
        VALUES ( 'Customer'[Customer ID] ),
        [Purchases outside subscriptions] > 1
    )
)

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

You could create a measure like 

Purchases outside subscriptions =
VAR CustWithSub =
    FILTER (
        VALUES ( 'Customer'[Customer ID] ),
        NOT ISEMPTY ( RELATEDTABLE ( 'Subscription' ) )
    )
VAR CustWithoutSub =
    FILTER (
        VALUES ( 'Customer'[Customer ID] ),
        ISEMPTY ( RELATEDTABLE ( 'Subscription' ) )
    )
VAR CustWithDates =
    GENERATE (
        CustWithSub,
        VAR CustID = 'Customer'[Customer ID]
        VAR SubAStart =
            LOOKUPVALUE (
                'Subscription'[Start date],
                'Subscription'[Customer ID], CustID,
                'Subscription'[Type], "Subscription A",
                MAX ( 'Date'[Date] )
            )
        VAR SubAEnd =
            LOOKUPVALUE (
                'Subscription'[End date],
                'Subscription'[Customer ID], CustID,
                'Subscription'[Type], "Subscription A"
            )
        VAR SubBStart =
            LOOKUPVALUE (
                'Subscription'[Start date],
                'Subscription'[Customer ID], CustID,
                'Subscription'[Type], "Subscription B",
                MAX ( 'Date'[Date] )
            )
        VAR SubBEnd =
            LOOKUPVALUE (
                'Subscription'[End date],
                'Subscription'[Customer ID], CustID,
                'Subscription'[Type], "Subscription B"
            )
        VAR SubADates =
            DATESBETWEEN ( 'Date'[Date], SubAStart, SubAEnd )
        VAR SubBDates =
            DATESBETWEEN ( 'Date'[Date], SubBStart, SubBEnd )
        RETURN
            UNION (
                EXCEPT ( VALUES ( 'Date'[Date] ), SubADates ),
                EXCEPT ( VALUES ( 'Date'[Date] ), SubBDates )
            )
    )
VAR NumPurchasesWithoutSub =
    CALCULATE ( COUNTROWS ( 'Sales' ), CustWithoutSub )
VAR NumPurchasesWithSub =
    CALCULATE (
        COUNTROWS ( 'Sales' ),
        TREATAS ( CustWithDates, 'Customer'[Customer ID], 'Date'[Date] )
    )
RETURN
    NumPurchasesWithoutSub + NumPurchasesWithSub

to give you the number of purchases. And then create a measure like

Num customers =
COUNTROWS (
    FILTER (
        VALUES ( 'Customer'[Customer ID] ),
        [Purchases outside subscriptions] > 1
    )
)

@johnt75   Thank you SO SO MUCH for taking your time and helping me with this!!!
Let me try this on during the weekend and come back to you if it worked 100% 🙂

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.

Top Solution Authors