You need to sign in to do that
Don't have an account?

Workflow formula rule will only run when record is edited, not created
Hello,
So I have a workflow rule that runs fine when the record is edited but will not run at all when it is created. The criteria is that it runs when the record id is not equal to NULL.

The field update formula is:
CASE(Size_Code__c,
"S", CASE(Tier__c,
1, 595,
2,655,
3, 945,
0),
"M", CASE(Tier__c,
1, 835,
2,835,
3, 1405,
0),
"L", CASE(Tier__c,
1, 1125,
2,1305,
3, 2025,
NULL),
"XL", CASE(Tier__c,
1, 1555,
2,1835,
3, 2910,
0),
"XXL", CASE(Tier__c,
1, 2225,
2,2385,
3, 4525,
0),
0)
Any thoughs would be appreciated!
Chris
So I have a workflow rule that runs fine when the record is edited but will not run at all when it is created. The criteria is that it runs when the record id is not equal to NULL.
The field update formula is:
CASE(Size_Code__c,
"S", CASE(Tier__c,
1, 595,
2,655,
3, 945,
0),
"M", CASE(Tier__c,
1, 835,
2,835,
3, 1405,
0),
"L", CASE(Tier__c,
1, 1125,
2,1305,
3, 2025,
NULL),
"XL", CASE(Tier__c,
1, 1555,
2,1835,
3, 2910,
0),
"XXL", CASE(Tier__c,
1, 2225,
2,2385,
3, 4525,
0),
0)
Any thoughs would be appreciated!
Chris
OR(ISNEW(),<here you place cross object bundle id field api name> != NULL)