If/Then Statment
Closed
                                    
                        Nancy                    
                                    -
                            Oct 28, 2009 at 05:30 PM
                        
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Oct 28, 2009 at 09:50 PM
        venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Oct 28, 2009 at 09:50 PM
1 response
                
        
                    venkat1926
    
        
                    Posts
            
                
            1863
                
                            Registration date
            Sunday June 14, 2009
                            Status
            Contributor
                            Last seen
            August  7, 2021
            
            
                    811
    
    
                    
Oct 28, 2009 at 09:50 PM
    Oct 28, 2009 at 09:50 PM
                        
                    If you enter a formula is G6 it will delete the existing value is G6 and you cannot manipulate. Beside it will give circular reference.
but you can have a small macro
            but you can have a small macro
Sub test()
If Range("G2") = 0 Then
Range("G6") = Range("G6") + 0.0025
End If
End Sub
                
                