Forum Discussion
Suraj_46
2 years agoNew Member
Date filter
Hi, Im having timesheet data of employees by column name like Name, start_date and end_date. Consider startdate as join date and end date as resign date. I want employee who have start date and...
- Anonymous2 years ago
Hi Suraj_46 ,
I made simple samples and you can check the results below:
Measure = var _select = MIN('Table 2'[Date]) VAR _END = MAX('Table'[End]) RETURN IF(_END<>BLANK()&&_END<_select,1,0)An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott ChangIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi Suraj_46 ,
I made simple samples and you can check the results below:
Measure = var _select = MIN('Table 2'[Date])
VAR _END = MAX('Table'[End])
RETURN IF(_END<>BLANK()&&_END<_select,1,0)
An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.