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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
NRS_Tych
Frequent Visitor

Minimum Purchase Date for a Customer

Hi,

 

I am trying to find the First Purchase Date for the customers.

So in the screenshot below, for this customer First Purchase Date is 4th Sep, but when I add Month Year to the table, the First Purchase Date gets updated to the Min(PurchaseDate) for that Month.  I am trying to find the Transaction Frequency of the customer and this messes up my calculation. Could someone help me with fixing this ?

 

 

NRS_Tych_0-1678452317271.png

 

Thank you!

 

 

1 ACCEPTED SOLUTION
MohammadLoran25
Super User
Super User

Hi,

Create a calculated column in your Customer Dimension as below:

 

CALCULATE (
    MIN ( 'Date Table'[DateColumn] ),
    RELATEDTABLE ( 'Pucrchase Fact Table' )
)

Then your problem would be solved.

 

Best Regards.

View solution in original post

3 REPLIES 3
NRS_Tych
Frequent Visitor

Thank you! They all are in a combined table. Should I create a date table which will make it easier ?

Yes it is better to make a separate dimension for that.

But If you don't want to create a dimension you can create a measure as below just based on your combined table:

 

VAR _CUSTOMER =
    SELECTEDVALUE ( CustomerPurchaseFactTable[CustomerID] )
RETURN
    CALCULATE (
        MIN ( CustomerPurchaseFactTable[MonthYear] ),
        FILTER (
            ALL ( CustomerPurchaseFactTable ),
            CustomerPurchaseFactTable[CustomerId] = _CUSTOMER
        )
    )

 

Regards,

Loran

MohammadLoran25
Super User
Super User

Hi,

Create a calculated column in your Customer Dimension as below:

 

CALCULATE (
    MIN ( 'Date Table'[DateColumn] ),
    RELATEDTABLE ( 'Pucrchase Fact Table' )
)

Then your problem would be solved.

 

Best Regards.

Helpful resources

Announcements
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.