Hi Trishla T,
Check the employees date of joining with current quarter start date?
Date of joining employee >= current quarter.
set the current quarter date and time in variable.
Hi Trishla T ,
Check this condition to find the quarter date
if (Month([YourEntity/DateAttribute]) <= 3) then 'Q1'
else if (Month([YourEntity/DateAttribute]) <= 6) then 'Q2' else if (Month([YourEntity/DateAttribute]) <= 9) then 'Q3' else 'Q4'