Info transfer based on entered value
Closed
                                    
                        greg                    
                                    -
                            Mar  5, 2011 at 07:13 PM
                        
aspperasp Posts 6 Registration date Sunday November 11, 2012 Status Member Last seen December 16, 2012 - Nov 11, 2012 at 08:56 PM
        aspperasp Posts 6 Registration date Sunday November 11, 2012 Status Member Last seen December 16, 2012 - Nov 11, 2012 at 08:56 PM
        Related:         
- Info transfer based on entered value
 - Free fire transfer - Guide
 - Crystal disk info - Download - Diagnosis and monitoring
 - Ssh secure file transfer download - Download - Remote access
 - Potplayer hide info - Guide
 - Sprint transfer of liability - Guide
 
2 responses
                
        
                    venkat1926
    
        
                    Posts
            
                
            1863
                
                            Registration date
            Sunday June 14, 2009
                            Status
            Contributor
                            Last seen
            August  7, 2021
            
            
                    811
    
    
                    
Mar 5, 2011 at 11:05 PM
    Mar 5, 2011 at 11:05 PM
                        
                    quote
I need to enter a box number
unquote
do you mean to say you want to have input box pop up so that you can type the unique box number
as you are deleting rows from inventory keep copy of original data in sheet 3 safely
I also suppose that unique box nuimber is in column A
try this macro
            I need to enter a box number
unquote
do you mean to say you want to have input box pop up so that you can type the unique box number
as you are deleting rows from inventory keep copy of original data in sheet 3 safely
I also suppose that unique box nuimber is in column A
try this macro
Sub test()
Dim j As Long, cfind As Range
Worksheets("inventory").Activate
j = InputBox("type the unique box number")
Set cfind = Columns("A:A").Cells.Find(What:=j, LookAt:=xlWhole)
If Not cfind Is Nothing Then
cfind.EntireRow.Copy Worksheets("complete").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0)
cfind.EntireRow.Delete
Else
MsgBox "that nummber is not available in the sheet invenetory"
End If
End Sub
                
                
                
        
                    aspperasp
    
        
                    Posts
            
                
            6
                
                            Registration date
            Sunday November 11, 2012
                            Status
            Member
                            Last seen
            December 16, 2012
            
                    
Nov 11, 2012 at 08:56 PM
    Nov 11, 2012 at 08:56 PM
                        
                    This helps me a lot
                
                
            
        
    
    
    
    
Mar 6, 2011 at 09:48 AM
Yes, I want to have input box pop up so that I can type the unique box number.
Mar 6, 2011 at 10:10 AM
Thank you again for your assistance.
Mar 6, 2011 at 10:37 AM
Time error 6
overflow
j = InputBox("type the unique box number") is highlighted
Mar 6, 2011 at 11:31 AM