Excel VBA input data to next empty Range
Closed
Niroth
Posts
1
Registration date
Thursday April 30, 2015
Status
Member
Last seen
April 30, 2015
-
Apr 30, 2015 at 09:47 PM
MaxStart Posts 338 Registration date Tuesday March 3, 2015 Status Moderator Last seen July 3, 2015 - May 1, 2015 at 08:09 AM
MaxStart Posts 338 Registration date Tuesday March 3, 2015 Status Moderator Last seen July 3, 2015 - May 1, 2015 at 08:09 AM
Related:
- Excel VBA input data to next empty Range
- How to input @ in laptop - Guide
- Number to words in excel formula without vba - Guide
- Transfer data from one excel worksheet to another automatically - Guide
- Vba case like - Guide
- How to reset safe folder password without losing data ✓ - Android Forum
1 response
MaxStart
Posts
338
Registration date
Tuesday March 3, 2015
Status
Moderator
Last seen
July 3, 2015
69
May 1, 2015 at 08:09 AM
May 1, 2015 at 08:09 AM
Sub FETCH_Data() Dim x As Variant x = InputBox("Enter the Code :") If x <> "" Then If Range("J6").Value <> "" Then Range("J7").Value = x Else Range("J6").Value = x End If End If End Sub