Forum Discussion

SachinNamdeo-20's avatar
3 years ago
Solved

New dealer count

"How i can calculate new dealer  count
new dealer condition is simple a dealer present in current month and sale some item but not present just one month before and not sale any item
 I have this type of data Table  - Cube invoice,in which dealer and sales are respectively"

datemonthmonthnodealersales
01-01-22jan1a,b,c,d10,020,20,300,
02-02-22feb2a,b,c,d,e,f10,20,30,25,05,30
01-03-22march3g,h,i,j,a,b,c11,12,15,14,18,151,15

I want this kind measure which can give me value if i select feb month in calender slicer it gives me return value  2 beacause there is 2 new dealer that is e & f similarly 

march give - 4



  • Jihwan_Kim's avatar
    Jihwan_Kim
    3 years ago

    Hi,

    Thank you for your feedback.

    I do not know how your desired visualization looks like, but please check the below picture and the attached pbix file whether it suits your requirement.

     

     

     

    New dealer count: =
    VAR _currentmonthdealerlist =
        SUMMARIZE ( Data, Dealer[dealer] )
    VAR _prevmonthsdealierlist =
        CALCULATETABLE (
            SUMMARIZE ( Data, Dealer[dealer] ),
            WINDOW (
                1,
                ABS,
                -1,
                REL,
                ALL ( 'Calendar'[Month-Year sort], 'Calendar'[Month-Year] ),
                ORDERBY ( 'Calendar'[Month-Year sort] )
            )
        )
    VAR _newdealerlist =
        EXCEPT ( _currentmonthdealerlist, _prevmonthsdealierlist )
    RETURN
        COUNTROWS ( _newdealerlist )
    

     

3 Replies

  • Hi,

    I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.

    I transformed the fact table like below in Power Query Editor.

    Please check the below picture and the attached pbix file.

    I hope the below can provide some ideas on how to create a solution for your datamodel.

     

     

     

     

     

    New dealer count: =
    VAR _currentmonthdealerlist =
        SUMMARIZE ( Data, Dealer[dealer] )
    VAR _prevmonthdealierlist =
        CALCULATETABLE (
            SUMMARIZE ( Data, Dealer[dealer] ),
            DATEADD ( 'Calendar'[Date], -1, MONTH )
        )
    VAR _newdealerlist =
        EXCEPT ( _currentmonthdealerlist, _prevmonthdealierlist )
    RETURN
        COUNTROWS ( _newdealerlist )
    

     

     

     

    • SachinNamdeo-20's avatar
      SachinNamdeo-20
      Icon for Helper II rankHelper II

      THANK YOU SIR FOR VALUEABLE SUGGESTION BUT, 
      this measure gives me blank value
      Sorry to say that ,i forgot the main condition which is that new dealer is only considerd when he have sale any particular month which i select ,this measure only gives the value which dealer were not on previous month

      • Jihwan_Kim's avatar
        Jihwan_Kim
        Icon for Super User rankSuper User

        Hi,

        Thank you for your feedback.

        I do not know how your desired visualization looks like, but please check the below picture and the attached pbix file whether it suits your requirement.

         

         

         

        New dealer count: =
        VAR _currentmonthdealerlist =
            SUMMARIZE ( Data, Dealer[dealer] )
        VAR _prevmonthsdealierlist =
            CALCULATETABLE (
                SUMMARIZE ( Data, Dealer[dealer] ),
                WINDOW (
                    1,
                    ABS,
                    -1,
                    REL,
                    ALL ( 'Calendar'[Month-Year sort], 'Calendar'[Month-Year] ),
                    ORDERBY ( 'Calendar'[Month-Year sort] )
                )
            )
        VAR _newdealerlist =
            EXCEPT ( _currentmonthdealerlist, _prevmonthsdealierlist )
        RETURN
            COUNTROWS ( _newdealerlist )