The workaround solved it, so it’s done for now.
This is the concatenate (each line a column to simplify it).
CONCATENATE(
[Related Salary em Faltas By Mes Abono Alimentação Processado],
" - ",
SUM(SELECT(Salary em Falta[Abono Alimentação € Processada],AND([Abono Alimentação Processado]=TRUE,[Mes Abono Alimentação Processado]=[_THISROW].[Mês]))),
“€”)
In this case, it’s just one column in the SUM formula, but other have
SUM(SELECT(XXXXXX)), + SUM(SELECT(XXXXX)) + SUM(SELECT(XXXXX))
Reason why I was using the INDEX(EXTRACT()) so I wouldn’t have to use the
s the concatenate (each line a column to simplify it).
CONCATENATE(
[Related Salary em Faltas By Mes Abono Alimentação Processado],
" - ",
SUM(SELECT(Salary em Falta[Abono Alimentação € Processada],AND([Abono Alimentação Processado]=TRUE,[Mes Abono Alimentação Processado]=[_THISROW].[Mês]))),
“€”)
In this case, it’s just one column in the SUM formula, but other have
SUM(SELECT(XXXXXX)), + SUM(SELECT(XXXXX)) + SUM(SELECT(XXXXX)) again.
But now, I’m going with the
s the concatenate (each line a column to simplify it).
CONCATENATE(
[Related Salary em Faltas By Mes Abono Alimentação Processado],
" - ",
SUM(SELECT(Salary em Falta[Abono Alimentação € Processada],AND([Abono Alimentação Processado]=TRUE,[Mes Abono Alimentação Processado]=[_THISROW].[Mês]))),
“€”)
In this case, it’s just one column in the SUM formula, but other have
SUM(SELECT(XXXXXX)), + SUM(SELECT(XXXXX)) + SUM(SELECT(XXXXX)) and it’s working