Forum Discussion

Shelley's avatar
Shelley
Post Prodigy
8 years ago
Solved

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 clic...
  • Anonymous's avatar
    Anonymous
    8 years ago

    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