Related:
- Macro to paste a unique count number of times
- Spell number in excel without macro - Guide
- This message was deleted text copy and paste - Android Forum
- Compare two worksheets and paste differences to another sheet - excel vba free download ✓ - Excel Forum
- Excel create unique id for each row ✓ - Excel Forum
- Times attack - Download - Children
1 response
Take the variable and build a FOR loop, as in:
dim thecount as integer
dim thecounter as integer
thecount=cells(1,1).value
for thecounter = 1 to thecount
Do you code here
next
It is that simple. Pot some code, and we can help! Take a look at this article, it may assist you:
https://ccm.net/faq/53497-how-to-manipulate-data-in-excel-using-vba
dim thecount as integer
dim thecounter as integer
thecount=cells(1,1).value
for thecounter = 1 to thecount
Do you code here
next
It is that simple. Pot some code, and we can help! Take a look at this article, it may assist you:
https://ccm.net/faq/53497-how-to-manipulate-data-in-excel-using-vba