Conditions and Skip Logics

I am currently working on skip logics.I added a skip logic for a section(created a groups for some questons named (soild )and for this section I added this skip logic: ${present} = ‘1’ and ${birth} >= date(‘6’) and ${birth} <= date(‘23’) and then inside the section or the group of qs I added another condition for each questions speratly and hers is the condition is : ((${present} = ‘1’ and (number(${AGE_MONTHS}) <= 5 or (number(${AGE_MONTHS}) >= 24 and number(${AGE_MONTHS}) <= 59))) ) and (${present} = ‘1’ and number(${AGE_MONTHS}) >= 6 and number(${AGE_MONTHS}) <= 23) … Now I deployed the survey and teh whole group of the qs and section dose not appera in the survey

Welcome back to the community, @Wardab! It seems like your expression is conflicting as ${AGE_MONTHS} cannot be both <= 5 or 24–59 and 6–23 at the same time. Maybe you would need to restructure it based on your requirement.