Question
Report Script to If/Else to exclude rows without a match
This is a report script which assigns a letter but if it's not 1, 2 or 3 it currenlty puts a ?. How can I just exclude the rows that aren't 1, 2 or 3?
| if (Event.Value == 1) |
| Event.Value = 'A'; |
| else if (Event.Value == 2) |
| Event.Value = 'C'; |
| else if (Event.Value == 3) |
| Event.Value = 'D'; |
| else |
| Event.Value = '?'; |
