A family of Microsoft relational database management systems designed for ease of use.
Brennen,
Are you talking about Project fields (e.g. Start, Finish, etc.) or the timescale for the Gantt Chart?
If you want to use month numbering for the Start and Finish fields you will be forced to use manual scheduling mode. And then you will also have to manually enter durations so you will lose virtually all the automated scheduling Project offers.
If you don't want to live with the limitations of manual scheduling mode, you could create a custom text field for the start of each task. The following formula should give what you want. Unfortunately the formula becomes considerably more complex if tasks cross a year boundary. In that case, I'd use a VBA approach to populate the custom field.
Text1="Month " & (month([Start])-month([Project Start])+1)
If you are referring to the timescale of the Gantt display then you can select various monthly labels that start from the Project start (e.g. month1, Month2, or m1, M2, etc.
Hope this helps.
John