Skip to main content
Nintex Community Menu Bar

Nintex Forms 2013 - Conditional text

  • August 12, 2022
  • 2 replies
  • 83 views

I am using NINTEX FORMS, no previous experience, and I want to set the value of a tag's text based on the value of a key I send through the query string.

What I am trying to accomplish is something like this:

If(fn-GetQueryString(TipoSolicitud) = "X", "Text1", "Text2")

But this doesn't work at all. Anyone knows if this is possible? and How to do it?

Thanks!

2 replies

Jake
Forum|alt.badge.img+13
  • Scholar
  • August 15, 2022
Hi, Not sure if you posted in the right board but if you could post your form and a quick screenshot of which tag you want to make conditional I can take a look.

SimonMuntz
Nintex Employee
Forum|alt.badge.img+23
  • Nintex Employee
  • August 16, 2022

Without testing it looks like your formula is wrong.

 

It should be:

If(fn-GetQueryString(TipoSolicitud) == "X", "Text1", "Text2")

or

If(equals(fn-GetQueryString(TipoSolicitud),"X"), "Text1", "Text2")