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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors