Multiple checks

I’m using blueprints. Which block can do something like “If statement1 = 1(do something) if statement1 = 2(do something else) if statement1 = 3(do something else)”?

If you are using enumerations for the checking you can use a Switch, otherwise just a couple of branches I think.
For enumerations you could set each integer to a string and make it very readable. But if you want to compare something else I think you can only use branches.