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
pbeeyeqs
Helper I
Helper I

Current Month and Previous Month Count of Logins

I've got 4 tables:

 

1) COMPANY (Company ID, Company Name, ...)

2) EMPLOYEE (Employee ID, Company ID, Employee Name, ...)

3) LOGINS (Login ID, Employee ID, Login Date, ...)

4) DATES TABLE

 

I want to show the total count of Logins for COMPANY for Current month and previous month to get below:

 

-----------------------------------------------------------------------

| COMPANY NAME   | CURRENT MONTH  | PREVIOUS MONTH  |
| Company A             | xxx                           |  yyy                          |

| Company B             | aaa                           |  bbb                         |

| ...                             | ...                              |  ...                             |

----------------------------------------------------------------------

 

I am not sure what measures to create. Nothing seems to be working. 

 

Thanks in advance. 

 

 

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

data.PNG

 

You need to have the relationship in star schema and apply below measure:

 

Total Count last Month =
countx(
FILTER(
Login,
MONTH(Login[Date])=MONTH(TODAY())-1
),
Login[LoginID]
)
 
 
Total Count This Month =
countx(
FILTER(
Login,
MONTH(Login[Date])=MONTH(TODAY())
),
Login[LoginID]
)

View solution in original post

Anonymous
Not applicable

Seems you need to add filter for year also.

 

Capture.PNG

View solution in original post

8 REPLIES 8
Anonymous
Not applicable

Capture.PNG

This appears to work IF I have a DATE FILTER for the previous 11 months only. 

 

Otherwise, it appears to be totalling months from previous years. ex: CURRENT MONTH = Aug 2019+Aug2018+...

 

 

 

Anonymous
Not applicable

Seems you need to add filter for year also.

 

Capture.PNG

Brilliant. Thank you.

Just wandering, what happens for LastMonth count in January month ? Need to handle using PREVIOUSMONTH function.




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

Proud to be a PBI Community Champion




Anonymous
Not applicable

data.PNG

 

You need to have the relationship in star schema and apply below measure:

 

Total Count last Month =
countx(
FILTER(
Login,
MONTH(Login[Date])=MONTH(TODAY())-1
),
Login[LoginID]
)
 
 
Total Count This Month =
countx(
FILTER(
Login,
MONTH(Login[Date])=MONTH(TODAY())
),
Login[LoginID]
)

I have the schema like below. I will build now and see how it goes. 

 

schema.png

PattemManohar
Community Champion
Community Champion

It will be great if you can provide the sample data for each table which will save time in creating test data and enables to focus on the logic bit.




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

Proud to be a PBI Community Champion




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.