Hi,
How do you wangt to display your survey (question by question, group by group)?
This flag "OrganisationFlag" is in an additional attribute?
If "group by group" and the flag in an additional attribute you may do it like this.
In the "default values" of the text question enter
{if(TOKEN:ATTRIBUTE_1==0,TOKEN:FIRSTNAME +" "+ TOKEN:LASTNAME,"")}
And enter the following in "css classes"
{if(TOKEN:ATTRIBUTE_1==0,"hidden")}
So you will see either this
or this
and in the answer table
On the other side you could put the name of the individuals into the additional attribute, blank for organizations.
Then you could use
!is_empty(TOKEN:ATTRIBUTE_1) to distinguish between the two groups
Joffm