I’m having trouble writing an if statement that tests whether or not a cell starts with a certain value. Here’s the outcome I’m trying to produce:

If A1 starts with 1/, 2/, or 3/, then insert “Q1”
If A1 starts with 4/, 5/, or 6/, then insert “Q2”
If A1 starts with 7/, 8/, or 9/ then insert “Q3”
If A1 starts with 10/, 11/, or 12/, then insert “Q4”

How do I make one if statement that combines these stipulations?