Final answer:
To achieve this, use a conditional statement in the rule's logic to check if the desired Time Attribute values are present.
Step-by-step explanation:
To create a Time Entry Rule that only runs when certain Time Attribute values are entered in the time card, you should use a conditional statement in the rule's logic. You can use an 'IF' statement to check if the desired Time Attribute values are present, and then specify the actions that should be taken if the condition is met. Here's an example of how this could be done in pseudocode:
IF TimeAttribute1 OR TimeAttribute2 OR TimeAttribute3 is present
Perform specified actions
END IF
In this example, the rule will execute the specified actions only if at least one of the Time Attribute values (TimeAttribute1, TimeAttribute2, or TimeAttribute3) is present in the time card.