Jump to content

Create a rule for replacing text


Recommended Posts

I need help creating a rule to convert say "Powertrain" to an "X" in a box for when the variable is needed. I have like six boxes that I need to do this on a contract warranty, the boxes are static I just need the X.

Thanks,

Greg

Link to comment
Share on other sites

Greg,

Not sure I understand exactly what you mean, but here is a Rule that will do what you requested, literally. Of course you need to replace the variable "Codeword" with your respective variable field:

if (Field("Codeword") == "Powertrain")

return "X";

 

else

return Field("Codeword");

 

Hope this helps

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...