I'm trying to figure out the best way to give a new name to a returning result. For example, I've tried the switch command like this:
= Switch( Fields!Disposition.value="Repaired","Completed", Fields!Disposition.value="NotRepaired","Not Completed", Fields!Disposition.value="MoveToNextLine","Not Completed")
This works, but since our database is not perfect, I need one extra line and could not find an example to show me.
What I need is an if then else statement. I've met the if then part of the statement above, but to finish it off, I need to say
else "UNKNOWN" which would be a catchall for fields entered incorrectly.
Any direction.
TIA
= Switch( Fields!Disposition.value="Repaired","Completed", Fields!Disposition.value="NotRepaired","Not Completed", Fields!Disposition.value="MoveToNextLine","Not Completed")
This works, but since our database is not perfect, I need one extra line and could not find an example to show me.
What I need is an if then else statement. I've met the if then part of the statement above, but to finish it off, I need to say
else "UNKNOWN" which would be a catchall for fields entered incorrectly.
Any direction.
TIA