You need to sign in to do that
Don't have an account?
Help in constructing the formula
We have two fields criteria and gap which needs to be calculated in Account. both the fields are formula fields.
Criteria checks two things. First it checks for the account Type and than on the basis of the Type of account it checks the Region.
I have constructed the formula for one type of the Account(NON-SAVE) but i am not able to make one for the other type(SAVE) since formulas can be only of 5000 as a limit.both the types need to be calculated in the same formula.Is there any alternative way to do so.
CASE(
Typel__c , 'NON-SAVE',
CASE( Region__c,
'NSW/ACT', 85000,
'VIC/TAS',85000,
'QLD',85000,
'WA',75000,
'SA/NT', 60000,0
),
0)
Once done with criteria field the Gap will be calculated after subtracting it.
Thanks in Advance
Criteria checks two things. First it checks for the account Type and than on the basis of the Type of account it checks the Region.
I have constructed the formula for one type of the Account(NON-SAVE) but i am not able to make one for the other type(SAVE) since formulas can be only of 5000 as a limit.both the types need to be calculated in the same formula.Is there any alternative way to do so.
CASE(
Typel__c , 'NON-SAVE',
CASE( Region__c,
'NSW/ACT', 85000,
'VIC/TAS',85000,
'QLD',85000,
'WA',75000,
'SA/NT', 60000,0
),
0)
Once done with criteria field the Gap will be calculated after subtracting it.
Thanks in Advance
Also you could try the following:
All Answers
Also you could try the following:
If anyhow you are not able to put the formula for the field required, place a trigger to calculate and put the required value in record.
Thanks,
Yogesh