Translate # to word & print
Closed
                                    
                        HM                    
                                    -
                            Apr 24, 2010 at 01:24 PM
                        
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Apr 24, 2010 at 02:34 PM
        rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Apr 24, 2010 at 02:34 PM
        Related:         
- Translate # to word & print
 - Ms word mod apk for pc - Download - Word processors
 - Adobe translate - Guide
 - Print file download - Download - Other
 - Ms word pdf extension - Download - Other
 - How to print a5 booklet on a4 paper - Guide
 
1 response
                
        
                    rizvisa1
    
        
                    Posts
            
                
            4478
                
                            Registration date
            Thursday January 28, 2010
                            Status
            Contributor
                            Last seen
            May  5, 2022
            
            
                    766
    
    
                    
Apr 24, 2010 at 02:34 PM
    Apr 24, 2010 at 02:34 PM
                        
                    These sort of lines
ActiveCell.Offset(0, 1).Select = "Savings"
there is no select when you are assigning it a value
you want
ActiveCell.Offset(0, 1).value= "Savings"
or simply
ActiveCell.Offset(0, 1)= "Savings"
            ActiveCell.Offset(0, 1).Select = "Savings"
there is no select when you are assigning it a value
you want
ActiveCell.Offset(0, 1).value= "Savings"
or simply
ActiveCell.Offset(0, 1)= "Savings"