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
Anonymous
Not applicable

I want to display the count of customers created in the last three months.

Date of creation column is there to do the calculation.

Please help me to do the same using Date Between, Date Add functions.

Please

 

Used the following formula, Insteasd of 90 days, I want to add month number

New Customer in Last 3 Months New =
CALCULATE( DISTINCTCOUNT(Sales[CustomerCode]),
DATESBETWEEN('Sales'[DateofOrder],
TODAY()-90,
TODAY()
))
3 REPLIES 3
Anonymous
Not applicable

Time-intelligence functions DO NOT WORK on date columns in tables that are not proper Date tables.

Please learn a bit about these functions and how to correctly handle time in PBI models (date/time dimensions).

Best
Darek
Anonymous
Not applicable

Already created calendar table manually. And defined relationship between calendar date column and customer creation date column. So it will work right?
Anonymous
Not applicable

Instead of writing

 

New Customer in Last 3 Months New =
CALCULATE( DISTINCTCOUNT(Sales[CustomerCode]),
    DATESBETWEEN('Sales'[DateofOrder],
    TODAY()-90,
    TODAY()
    )
)

you should use the Date table

New Customer in Last 3 Months New =
var __today = TODAY()
var __90DaysBackFromToday = TODAY() - 90 + 1 -- yes, you have to add 1
var output =
CALCULATE (
    DISTINCTCOUNT( Sales[CustomerCode] ),
    DATESBETWEEN (
        'Dates'[Date],
        __90DaysBackFromToday,
        __today
    )
)

Best

Darek

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