good idea on the 3860, i have one more quirk to add. can i make this macro search out for the first empty cell, say i run it once and then need to go back and run it again to add another number, right now it starts back and overwrites it. Can you write this out for me so all i have to do is...
Below is a macro i got from a buddy and it works perfect only i need to add another imput box called item qty the info will record into column b next to what went into column a. and then it will continue on just like before. can anyone help me out
Sub additems()
'
'
Dim NewValue
X = 1
A...
I need a macro that will have a imput box to imput item numbers, i need it to repeat itself until i type the word done in the imput box.
Can anyone help
Column A Column B Column C
248.............. test.................4
2410............ test2................10
I need a macro that I can imput a number from column A into that will return then Info in column B in that message box and the info into column C, but give me the option of...
In column a I have number 1,2,3,4,5...etc number each row, i need a macro to seek out a number I imput into a message box saw number 5, then find that row and delete that row.
Thanks Alot
I have the following macro
Sub TestMacro()
Range("A2").Select
ActiveCell.FormulaR1C1 = InputBox("Item Number")
Range("B2").Select
ActiveCell.FormulaR1C1 = InputBox("Qty #")
Range("C2").Select
End Sub
it works fine but i want it to repeat itself over and over until I end...
i need a macro that will take my numbers in column a and format them into column be 3 spots. so it its a single number it read 004, a two digit number reads 040, but if its a 3 digit number it just puts that number. Any help would be greatly appreciated.
Thanks
column A Column B...