You need to sign in to do that
Don't have an account?
Naveen Kvp
I have a two fields in Tax master object Excise Duty % and Service Tax % how to write a validation for Only one of the two to be entered.
I have a two fields in Tax master object Excise_Duty__c and Sales_Tax__c how to write a validation for Only one of the two to be entered.
i am wrote a formula like this:
OR(
NOT( ISBLANK( Excise_Duty__c ) ),
ISBLANK( Sales_Tax__c )
)
This is working for only one field for checking condition,how can i check for both fields!
Please provoide me profer solution for this!! Thanks in advance
i am wrote a formula like this:
OR(
NOT( ISBLANK( Excise_Duty__c ) ),
ISBLANK( Sales_Tax__c )
)
This is working for only one field for checking condition,how can i check for both fields!
Please provoide me profer solution for this!! Thanks in advance
OR(NOT(ISBLANK(Excise_Duty__c ) ),
ISBLANK(Service_Tax__c )),
OR(
NOT(ISBLANK( Service_Tax__c ) ),
ISBLANK(Excise_Duty__c )
))
This will work fine i got solution cool guys :)
Use of AND operation will do it
Please mark this as solution if this solves your problem, So that if anyone has this issue this post can help