Here are a few simple percentiles to consider that I use often:
| P10 | Avg - (StdDev * 1.645) |
| P35 | Avg - StdDev |
| P90 | Avg + (StdDev * 1.645) |
| P95 | Avg + (StdDev * 1.96) |
Avg = Average (Mean would be even better). It does take into account that your data has a normal distribution.