I listed a couple other options in my original response on the other thread.
You can simply show the value of that case property, but it will contain the choice values from the "fatores de risco" question, not the display text.
The simplest solution would be to use the replace()
function once for each choice option, to replace the choice value with the desired display text. For example, if the case property is
"falta_de_apoio depressao"
Then you can use
replace(
replace(
replace(
replace(#case/fatores_de_risco, " ", ", "),
"falta_de_apoio", "Falta de apoio familiar"),
"depressao", "Tristeza/depressao"),
"abusivo_alcool", "Uso abusivo do álcool")
(And so on) to transform that into "Falta de apoio familiar, Tristeza/depressao"
. You can apply this transformation either in a hidden value in the original form, saving the result to the case, or in the followup form.
This means you have to duplicate each label, which will be tedious, though unfortunately there's no straightforward way to get the display text directly.