This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
hi,
im new to power bi and this may be an abitious request but i need to make a card visual that shows the active number of employees given at any time using a date slicer. i have a spreadsheet of an employee list with employment start and end dates (active employees have a blank as their end date)
ive looked online and its suggested to use calendar table and dax. im unsure on how to do this especially for this application. any help is much appreciated.
Hello,
Whilst yes, in general, it is recommended to have an additional calendar table, your case seems straight forward enough to do without it. Should your use case get more complex, you can always create a calendar table by creating a new Table (under modeling) with the following dax:
DateTable =
CALENDAR([your start date],[your end date])
For the count of active number of employees, consider the following simple solution:
ActiveEmployees =
COUNTBLANK(EmployeeList[end date])Here, you are basically counting how many rows in the end date column are blank, which by your logic, would indicate one (1) active employee.
Proud to be a Super User! | |
thanks a lot for that. how would this work with the date slicer, say if i wanted to find number of employees active a month ago but some of them had left last week?
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 45 | |
| 28 | |
| 24 | |
| 22 |