Relevant question for specific choices

What is the problem? Please be detailed.

I wanted to create an accompanying relevant question as below:

Where do you store yours savings?

ANSWER:
Bank
MFI
Cooperative
Home

Relevant question is:

If from a bank/MFI/cooperative, which one?

If bank/MFI/cooperative is ticked off, relevant question should prompt after. I'm having a problem with another choice though. If I tick off "home", the same relevant question is still prompted. How can I take out the relevant question when the choice is "home"?

Thanks!

Hi @pfamisaran

How did you write the relevant condition? Can you provide it here?

1 Like

Hi @pfamisaran,

I think what you're looking for is "not selected" as a relevancy. So, the follow up question should always be asked, except when they choose "home". In this case, the relevancy for your follow-up question would be:

not(selected(${wheresavings},'home'))

I've attached an example for you:
example_notselected_bank.xlsx (14.2 KB)

Hope that helps!
Janna

2 Likes

Thanks for this one Janna. What about you need more than one relevance to a questions. Say for example:

What is your employment status?

If they choose 'employed', 'self-employed', 'retired', they should be prompted to this next question.

Please enter name of organization/business.

Thanks!

Hi @pfamisaran,

You can use "or" or "and" in your formula to match more criteria.

In your example, you could use this formula in your relevant column:
selected(${employment},'employed') or selected(${employment},'selfemployed') or selected(${employment},'retired')

  • this would make your follow-up question show when they chose any of those three answers.

Hope that helps!
Janna

Thanks Janna. Working fine now.