You need to sign in to do that
Don't have an account?
Naveen Kvp
Validation on Tax Master
Hi Friends
Validation:In Tax Master i have a Three fields Excise duty,Vat And Cst if we fill Excise duty either Vat or Cst only one should enter.
How to write a validation for this please provoide some inputs,Thanks in advance.
i am writing a Validation like this but it won't work:
Validation:In Tax Master i have a Three fields Excise duty,Vat And Cst if we fill Excise duty either Vat or Cst only one should enter.
How to write a validation for this please provoide some inputs,Thanks in advance.
i am writing a Validation like this but it won't work:
AND( ISBLANK( Excise_Duty__c ), OR( NOT(ISBLANK(VAT__c)), ISBLANK(CST__c) ), OR( NOT(ISBLANK(CST__c)), ISBLANK(VAT__c) ) )
As per your requirement,I think the below validation rule will work try and let me know in case of issue
(NOT(ISBLANK(Excise_Duty__c))) && (NOT(ISBLANK(CST__c)) && NOT(ISBLANK(VAT__c)))
Thanks,
Amit Trivedi