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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Simple measure

Hi,

 

I want a measure that gives me the count of Client ID that have made a transaction in the last 3 months. My table looks like this:

 

Client IDOperationDate
1Last transaction8/30/2019
2Opening8/30/2019
3Closure8/30/2019
4Last transaction8/30/2019
5Opening8/29/2019
6Closure8/28/2019
7Last transaction8/5/2019
8Last transaction8/24/2019
9Last transaction8/24/2019

 

The measure should count distinct Client ID, filter Operation in {"Last Transacion"} and then filter all the dates from today until 3 months ago.

 

 

Thanks in advance,

 

IC

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @Anonymous ,

I'd like to suggest you to use date and today functions to looping records and get last three month distinct count based on current date:

Measure =
CALCULATE (
    COUNTROWS ( VALUES ( Table[Client ID] ) ),
    FILTER (
        ALLSELECTED ( Table ),
        [Operation] = "Last transaction"
            && [Date]
                >= DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 3, DAY ( TODAY () ) )
            && [Date] <= TODAY ()
    )
)

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 @Anonymous ,

I'd like to suggest you to use date and today functions to looping records and get last three month distinct count based on current date:

Measure =
CALCULATE (
    COUNTROWS ( VALUES ( Table[Client ID] ) ),
    FILTER (
        ALLSELECTED ( Table ),
        [Operation] = "Last transaction"
            && [Date]
                >= DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 3, DAY ( TODAY () ) )
            && [Date] <= TODAY ()
    )
)

Regards,

Xiaoxin Sheng

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

Hi,

Create a Calendar Table and build a relationship from the Date column of the Data Table to the Date column of the Calendar Table.  Try this measure

Measure = COUNTROWS(FILTER(SUMMARIZE(CALCULATETABLE(Values(Data[Client ID]),Data[Operation]="Last Transaction"),[Client ID],"ABCD",CALCULATE(DISTINCTCOUNT(Data[Client ID]),DATESBETWEEN(Calendar[Date],EDATE(TODAY(),-2),TODAY())),[ABCD]>0))

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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