This should be easy but, when using this formula the other if then statements update properly, but for all blank values, I would think it would change them to "k", but it is not. The field is a string also.
if {Command.Requirement} = "a" then "a"
else if {Command.Requirement} = "b" then "b"
else if {Command.Requirement} = "c" then "c"
else if {Command.Requirement} = "d" then "d"
else if {Command.Requirement} = "e" then "e"
else if {Command.Requirement} = "f" then "f"
else if {Command.Requirement} = "g" then "g"
else if {Command.Requirement} = "h" then "h"
else if {Command.Requirement} = "i" then "i"
else if {Command.Requirement} = "j" then "j"
else "k"
Any suggestions?
if {Command.Requirement} = "a" then "a"
else if {Command.Requirement} = "b" then "b"
else if {Command.Requirement} = "c" then "c"
else if {Command.Requirement} = "d" then "d"
else if {Command.Requirement} = "e" then "e"
else if {Command.Requirement} = "f" then "f"
else if {Command.Requirement} = "g" then "g"
else if {Command.Requirement} = "h" then "h"
else if {Command.Requirement} = "i" then "i"
else if {Command.Requirement} = "j" then "j"
else "k"
Any suggestions?