Calculate number of person aged between 7 and 15 years old

Hi @camillecbx,

You could use the if(${age} >= 7 and ${age} <= 15, 1, 0 ) to get the count of children in between 7 to 15 years.