Loading...
To build a calculated field for bonus eligibility based on location and tenure, you would combine several calculated field types.
First, create a calculated field to determine tenure in years using the Date Difference function, subtracting the worker's hire date from today's date.
Next, establish tenure bands (e.g., "1-3 years", "3-5 years") using an Evaluate Expression Band function or a series of Condition calculated fields based on the calculated tenure. Define the text for each band using Text Constant calculated fields.
Then, create a Condition calculated field for location, specifying the desired bonus-eligible location.
Finally, create a master Condition calculated field for bonus eligibility. This field will combine the tenure band and location conditions using logical operators (e.g., AND), returning true if both criteria are met.
To build a calculated field for bonus eligibility based on location and tenure, you would combine several calculated field types:
Create a Calculated Field for Tenure (Years)
Create Calculated Fields for Tenure Bands
Create a Condition Calculated Field for Location
Create a Final Condition Calculated Field for Bonus Eligibility
(Tenure Band CF = "3-5 years") AND (Location CF = [Specific Bonus Location]).