What you need to do is create a table called steps that links to the main record. That way you can enter as many steps as you want without worrying about space.
Trouble_Tickets
----------------
trouble_ticket_id int
rep_name varchar(50)
trouble_date timestamp
Fix_Steps
---------------
fix_step_id int
trouble_ticket_id int
step varchar(255)
Using 2 tables allows you to enter many steps, you can even remove a step if it turns out you need to back it out.