I have a column of ages (called Age) on one of my table and i want to create a formula column that groups these ages into age bands - something like this
if("Age">=0 and "Age"<5,'0-4')
if("Age">=5 and "Age"<12,'5-11')
if("Age">=12 and "Age"<18,'12-18')
if("Age">=18,`Above 18')
Is it possible, any help would be appreciated.