Forum Discussion

H_insight's avatar
H_insight
Icon for Helper V rankHelper V
6 years ago
Solved

New and Recurring Customers

Hello, I have a sample data that contains 8 columns. What I am trying to do is to identify new customers withing the current reporting month, but my measure is not returning the right outcome.   N...
  • H_insight's avatar
    H_insight
    6 years ago

    danextian 

     

    Thanks for your help on this. I have changed the OldSalesCount to:

    OldSalesCount = 
    IF (
         EOMONTH(Data[Service Start],0) < EOMONTH(Data[Reporting Month],0),
        0,
        1
    )

    and the result came as expected.

     

    Cheers