Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi experts,
is it possible multiple conditions in one if conduction?
ex: I have one bar chart in that layout tab i will write if(product='apple',1,0) it means product=apple then the chart will visible now my question is if(product='apple''banana',1,0) is it possible?
yes, try this
=if(match(lower(Product),'apple','banana'),1,0)
=wildmatch(product, 'apple', 'banana')
if(product='apple' or product='banana',1,0)
hope this helps
regards
Marco
or simply
product='apple' or product='banana'
regards
Marco
or
=mixmatch(product, 'apple', 'banana')