cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
raghushettyyy
Frequent Visitor

calculate active customers previous month and current month

I have 3 columns 

 

and I want to get active customers for current month where status = "won"

and active customers for previous month where status = "won"

 

for current month im using 

ActiveMembers = CALCULATE(DISTINCTCOUNT(Table[Customer]),PARALLELPERIOD(table[Date],0,MONTH),FILTER(
        'Table','table'[Status] ="won" ))
 
and it's working fine.
 
but i have getting no value for previous month and I'm using:
ActiveMemberPreviousMonth = CALCULATE(DISTINCTCOUNT('table'[Customer]),PREVIOUSMONTH('table'[Date]), FILTER('table','table'[Status]="Won"))
 
Problem statement: I want help to get current active member and previous month active member where status = "Won"
 

 

expected solution:

 

eg: if today is 12 March 2021:

I want active users of the current month March 2021: 5364 users

 

and previous month i.e Feb 2021 :

active users 3265 users.

 
 
my example data for the table is shown below

 

customer date status
xyz03-01-2018 won
abc03-01-2018 lost
efd03-01-2018 won
ghy03-01-2018 lost
tgh05-02-2018 won
fht01-01-2019 won
1 ACCEPTED SOLUTION

Hi @raghushettyyy ,

You can try these measures:

CurrentMonthCount = 
CALCULATE (
    DISTINCTCOUNT ( 'Table'[Customer] ),
    FILTER (
        'Table',
        YEAR ( 'Table'[Date] ) = YEAR ( SELECTEDVALUE ( 'Date'[Date] ) )
            && MONTH ( 'Table'[Date] ) = MONTH ( SELECTEDVALUE ( 'Date'[Date] ) )
            && 'Table'[Status] = "won"
    )
)
LastMonthCount = 
VAR lastmonth =
    EOMONTH ( SELECTEDVALUE ( 'Date'[Date] ), -2 ) + 1
RETURN
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[Customer] ),
        FILTER (
            'Table',
            YEAR ( 'Table'[Date] ) = YEAR ( lastmonth )
                && MONTH ( 'Table'[Date] ) = MONTH ( lastmonth )
                && 'Table'[Status] = "won"
        )
    )

vyingjl_0-1634018365097.png

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

9 REPLIES 9
raghushettyyy
Frequent Visitor

the data is huge I just made a small snippet of it for understanding.

I have data from Jan 2018 to August 2021.

I get accurate active customers for the current month but I don't know how to get active users for the previous month.

my measure for the previous month just doesn't work.

 

smpa01
Super User
Super User

@raghushettyyy  what do you mean by active customers?

 

Do you need cumulative distinct count  of wins per yr-month

 

Measure2 =
CALCULATE (
    DISTINCTCOUNT ( 'Table'[customer] ),
    FILTER ( ALL ( 'Table'[ date] ), 'Table'[ date] <= MAX ( 'Table'[ date] ) ),
    'Table'[ status] IN { "won" }
)

 

smpa01_0-1633640370668.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






New Animated Dashboard: Sales Calendar


yes, I want the cumulative distinct count of active users for the current month and the previous month.

 

Then try the measure i gave





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






New Animated Dashboard: Sales Calendar


how do I use it for finding previous month's active users

colacan
Resolver II
Resolver II

@raghushettyyy  Hi, could you share mroe data? the data you've shared above does not have Feb & Apr data hence it is natural to show no value. When your date filter context is Jan, there is no data for last year Dec, and when date filter is March, there is no data for Feb, and so on.

I have data from Jan 2018 to August 2021, I have just shown the above data as a sample snippet.

need help with previous months active users

Hi @raghushettyyy ,

You can try these measures:

CurrentMonthCount = 
CALCULATE (
    DISTINCTCOUNT ( 'Table'[Customer] ),
    FILTER (
        'Table',
        YEAR ( 'Table'[Date] ) = YEAR ( SELECTEDVALUE ( 'Date'[Date] ) )
            && MONTH ( 'Table'[Date] ) = MONTH ( SELECTEDVALUE ( 'Date'[Date] ) )
            && 'Table'[Status] = "won"
    )
)
LastMonthCount = 
VAR lastmonth =
    EOMONTH ( SELECTEDVALUE ( 'Date'[Date] ), -2 ) + 1
RETURN
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[Customer] ),
        FILTER (
            'Table',
            YEAR ( 'Table'[Date] ) = YEAR ( lastmonth )
                && MONTH ( 'Table'[Date] ) = MONTH ( lastmonth )
                && 'Table'[Status] = "won"
        )
    )

vyingjl_0-1634018365097.png

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thank you

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors