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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Shelley
Post Prodigy
Post Prodigy

New Customer Calculation

Hi All, I'm probably doing something dumb, but I cannot figure out how to make this formula work properly. This is supposed to ignore any slicer/filter on the ProfitCenterGroup Table, but when I click the slicer, it doesn't seem to ignore it. In addition, it calculates way too low, even if it were considering the filter setting. Perhaps this is something in the relationships?? 

 

Absolute New Customers =
COUNTROWS (
FILTER (
ADDCOLUMNS (
VALUES ( PLS_Analytics[End_Customer_Key] ),
"PreviousSales",
CALCULATE (
COUNTROWS ( PLS_Analytics ),
ALL ( 'ProfitCenterGroup Table' ),
FILTER (
ALL ( 'RA_Daily_Calendar' ),
'RA_Daily_Calendar'[Date] < MIN ( 'RA_Daily_Calendar'[Date] )
)
)
),
ISBLANK ( [PreviousSales] )
)
)

 

 

Here's an image of the relevant tables and relationships.

 Capture.PNG

Help is appreciated. Thanks in advance!

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Shelley,

 

Perhaps you can try to use below measure if it works on your side.

Absolute New Customers =
COUNTROWS (
    FILTER (
        SUMMARIZE (
            PLS_Analytics,
            PLS_Analytics[End_Customer_Key],
            "PreviousSales", CALCULATE (
                COUNTROWS ( PLS_Analytics ),
                ALL ( 'ProfitCenterGroup Table' ),
                FILTER (
                    ALL ( 'RA_Daily_Calendar' ),
                    'RA_Daily_Calendar'[Date] < MIN ( 'RA_Daily_Calendar'[Date] )
                )
            )
        ),
        ISBLANK ( [PreviousSales] )
    )
)

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

HI @Shelley,

 

Perhaps you can try to use below measure if it works on your side.

Absolute New Customers =
COUNTROWS (
    FILTER (
        SUMMARIZE (
            PLS_Analytics,
            PLS_Analytics[End_Customer_Key],
            "PreviousSales", CALCULATE (
                COUNTROWS ( PLS_Analytics ),
                ALL ( 'ProfitCenterGroup Table' ),
                FILTER (
                    ALL ( 'RA_Daily_Calendar' ),
                    'RA_Daily_Calendar'[Date] < MIN ( 'RA_Daily_Calendar'[Date] )
                )
            )
        ),
        ISBLANK ( [PreviousSales] )
    )
)

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

It works for me. Thank you. In my case study it required a little change . I needed to change below line

MIN ( 'RA_Daily_Calendar'[Date] )

and use a calculate measure to display results for each month (without any change it displaied repeated total counted value). 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors