Create folder with a macro

M

Myrna Rodriguez

Hi...

I'm on a VB mission to create a folder based on cells in
"Column A". A folder will be created when user executes
OK commandbutton which will filter data on excel worksheet.


I was successful in creating a folder with defining one range ("A1").
However, I get stuck when specifying multiple ranges. I tried "A:A",
"A1:A65353".
Any suggestions how I got stuck with a bug??

This is the code I'm using in the OK Command Button.

Dim x As String
x = "S:\Employee Folders\" & Range("A1:A65535")
On Error Resume Next
MkDir x

I'm getting this error: Type Mismatch

Thanks for your helping hand!
Myrna


*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
 
B

Bob Phillips

Dim x As String
Dim cell As Range

On Error Resume Next

cLastRow = Cells(Rows.Count,"A").End(xlUp).Row
For Each cell in Range("A1:A" & cLastRow)
x = "S:\Employee Folders\" & cell.Value
MkDir x
NExt cell

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
M

Myrna Rodriguez

Hi Bob~

Thanks so much! You're a magician...
The code works successfully.
Curious? what does HTH stands for in your signature?
thanks!
Myrna


*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
 
B

Bob Phillips

Hope This Helps<g>

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Excel Macro 1
Create subfolders in a folder 2
Populating a label box 1
Bypass Textbox Validation 4
How can you make a macro global 2
Dumb Dim Question 1
Setting a Range 6
Creating a ratings list in Excel 1

Top