Excel VBA help
Solved/Closed
Related:
- Excel VBA help
- Number to words in excel formula without vba - Guide
- Vba case like - Guide
- How to open vba in excel mac - Guide
- Excel marksheet - Guide
- Excel free download - Download - Spreadsheets
2 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Feb 22, 2010 at 10:57 AM
Feb 22, 2010 at 10:57 AM
I see one logical error
If IsEmpty(a4) = False Then 'make sure that A4 is not empty prior to running the below if
I think you meant
If IsEmpty(Range("a4")) = False Then 'make sure that A4 is not empty prior to running the below if
If IsEmpty(a4) = False Then 'make sure that A4 is not empty prior to running the below if
I think you meant
If IsEmpty(Range("a4")) = False Then 'make sure that A4 is not empty prior to running the below if