=IF(AND(AB2>0.01,OR(D2="autosomal dominant",D2="autosomal dominant and autosomal recessive",D2="autosomal recessive and autosomal dominant",D2="autosomal dominant, autosomal recessive",D2="autosomal recessive, autosomal dominant")),"Likely Benign",IF(AND(AB2>0.1,OR(D2="autosomal recessive")),"Likely Benign"))
The above formula works great, but I would like to add some criteria to it and seem to be having trouble with the syntax.

The first criteria is an OR statement AL2="common_variation",“Likely Benign” for both sets of IF's

The second criteria is another IF statement AM2=”likely pathogenic OR AM2=”pathogenic” =”Likely Pathogenic”

The third criteria is also an IF statement AM2=”unknown” =”VUS”

Thank you.