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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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