I am using Excel 2003 and I need to create a macro the asks the user for 5 inputs: Date, Project#, Fault, Problem, and Solution. I have never used macros before so I have no idea how to code this. Once the data is entered by the user I want it to go under the appropriate columns. After this is done the macro will not prompt the user for another input until the macro is run again.
|
|||
|
|
When you start the macro, place this code before you do anything:
This assumes that you always have some value in 'A1' and that there are no blank rows until you come to the end of the valid rows of entered data. At this point, you have the value 'i' that is equal to the number of rows already containing data. Then you can use Christian Payne's code above, but modify the
to
This will allow your macro to place data in the next blank row below your already existing data. |
||||
|
|
|
There is a built-in way of doing this. Put your column headers in row 1 of an Excel sheet, select cell A1 then go to the This can be a restrictive solution as you can't do things like populating one field on the basis of another (e.g. give a list of problems which depend on the chosen fault). If you just need something quick and simple then it does the job |
|||
|
|
|
To move the active cell down to a3 (i.e. the next row underneath as you ask) use this:
|
|||||
|
|
Would something like this do what you need?
|
|||
|
|