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
Sjon1791
Regular Visitor

Calculate active years from a customer

I am trying to calculate the amount of active years for customers.

 

We have different tables like "documents transaction date", "customer" and "sales values" .

 

The Tranaction date table is a calender, Customer is all customer information and both are linked to Sales values where are all transactions.

I can see the Active years in a matrix per year.

Cumulative Distinct Count Until this YTD = TOTALYTD(DISTINCTCOUNT([Related Customer]),'SALES VALUES'[Related Date])

But it is not giving me

Customer  years active.

       A               2

      B                1

       c                 3

Etc.

1 ACCEPTED SOLUTION
lc_finance
Solution Sage
Solution Sage

Hi @Sjon1791 ,

 

thank you for the interesting question.

You can solve this by adding a calculated column to your customer table.

 

The formula is the following:

Years active = 
VAR currentCustomer = CALCULATE(SELECTEDVALUE('CUSTOMERS'[Customer]))
VAR lastYearActive = CALCULATE(MAX('SALES VALUE'[Related Date]),'SALES VALUE'[Customer]=currentCustomer)
VAR firstYearActive = CALCULATE(MIN('SALES VALUE'[Related Date]),'SALES VALUE'[Customer]=currentCustomer)

RETURN YEAR(lastYearActive)- YEAR(firstYearActive)

And here is what it looks like:

Years Active.png

 

Finally, you can also find a Power BI file with an example here.

 

Let me know if this helps you!

 

Regards,

 

LC

Interested in Power BI templates? Check out my blog at www.finance-bi.com

View solution in original post

1 REPLY 1
lc_finance
Solution Sage
Solution Sage

Hi @Sjon1791 ,

 

thank you for the interesting question.

You can solve this by adding a calculated column to your customer table.

 

The formula is the following:

Years active = 
VAR currentCustomer = CALCULATE(SELECTEDVALUE('CUSTOMERS'[Customer]))
VAR lastYearActive = CALCULATE(MAX('SALES VALUE'[Related Date]),'SALES VALUE'[Customer]=currentCustomer)
VAR firstYearActive = CALCULATE(MIN('SALES VALUE'[Related Date]),'SALES VALUE'[Customer]=currentCustomer)

RETURN YEAR(lastYearActive)- YEAR(firstYearActive)

And here is what it looks like:

Years Active.png

 

Finally, you can also find a Power BI file with an example here.

 

Let me know if this helps you!

 

Regards,

 

LC

Interested in Power BI templates? Check out my blog at www.finance-bi.com

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.