Forum Discussion
Alanoudfahad
5 years agoFrequent Visitor
Expected within 3 months
Hello all! I'm facing some challenges and was wondering if someone can help? I want to create a card that shows the number of employees whom are expected to join the organization within 3 mon...
- 5 years ago
Alanoudfahad
I assume you have your employee table for each employee with the start date. Create the following measure and use it on card visual.Emp Count to Join in Next 3 Months = var __today = TODAY() var __3month = EDATE(__today,3) var __result = CALCULATE( COUNTROWS( Table1 ), Table1[Start Date] >= __today && Table1[Start Date] <= __3month ) return __result
Fowmy
5 years agoSuper User
Alanoudfahad
I assume you have your employee table for each employee with the start date. Create the following measure and use it on card visual.
Emp Count to Join in Next 3 Months =
var __today = TODAY()
var __3month = EDATE(__today,3)
var __result =
CALCULATE(
COUNTROWS( Table1 ),
Table1[Start Date] >= __today && Table1[Start Date] <= __3month
)
return
__result
Alanoudfahad
5 years agoFrequent Visitor
That's a very elegant and straightforward approach! thank you so much