Switch case with if statment to go to next case?

Is it possible to go to the next case based on a condition? Like so:

    
    switch (action)
            {
                case 1:
                    if(condition)
                    {
                        doStuff();
                        break;
                    }
                    else //continue???
                case 2:
                    if(condition)
                    {
                        doStuff();
                        break;
                    }
                    else //continue???
                case 3:
                    if(condition)
                    {
                        doStuff();
                        break;
                    }
                    else //continue???
                case 4:
                    if(condition)
                    {
                        doStuff();
                        break;
                    }
                    else //continue???
                default:
                    doStuff();
                    break;
            }
    

Figure it out. Its “goto case 2:”

           case 1:
                if(condition)
                {
                    doStuff();
                    break;
                }
                else goto case 2;