While testing one of our multi-axis charts I've created a formula column in order to group up a few categories. My scenario considers data about public education, considering student enrollments. My formula nests 3 IF conditions and when checking the data by visualizing the table's data, everything looks fine, however every chart where I try to use it, the app crashes.
Formula: if( "situacaomatricula" = 'Aprovado'
or "situacaomatricula" = 'Aprovado por Conselho de Classe'
or "situacaomatricula" = 'Reclassificado','Aprovado',
if("situacaomatricula" = 'Reprovado'
or "situacaomatricula" = 'Reprovado por Falta','Reprovado',
if("situacaomatricula" = 'Desistente','Evasão',"situacaomatricula")))