Using IF with AND together
-
Hello,
Currently I have an IF statement like this…
(function(){
if(fieldname3 == ‘Postpaid Activation (Lines 1-2)’) return fieldname12*4.5;
})();
The thing is…I have a fieldname13 with a selection as well. So, basically I’m trying to nest the IF with AND…For example I’m trying to have it break down like this…
If a user selects Fieldname3 ==’Selection’ and then selects Fieldname13 == ‘Selection’
return Fieldname12*4.5Would something like this be possible with if(and(?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Using IF with AND together’ is closed to new replies.