Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm getting a Type Mismatch error and the macro stops at Set myDir (see ERROR
below). Since I'm using a string of numbers, letters and symbols, I thought I would select the type as 2 for text. Please help! Dim myCell, myRange, myDir, myDateTime Set myRange = Application.InputBox(prompt:="Enter a Range", Type:=8) ERROR Set myDir = Application.InputBox(prompt:="Enter File Location", Default:="U:\CC EB 500 Reports\mmddyy\", Type:=2) Set myDateTime = Application.InputBox(prompt:="Enter Date and Time", Default:="mm/dd/yy hh:mm am", Type:=2) Windows("PERSONAL.XLS").Visible = True Workbooks("Personal.xls").Activate Sheets("Sheet1").Select For Each myCell In myRange Workbooks.Open Filename:=myFile.Text & myCell.Value |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Remove Set from MyDir and MydateTime myDir = Application.InputBox(prompt:="Enter File Location", .... HTH "Anolan" wrote: I'm getting a Type Mismatch error and the macro stops at Set myDir (see ERROR below). Since I'm using a string of numbers, letters and symbols, I thought I would select the type as 2 for text. Please help! Dim myCell, myRange, myDir, myDateTime Set myRange = Application.InputBox(prompt:="Enter a Range", Type:=8) ERROR Set myDir = Application.InputBox(prompt:="Enter File Location", Default:="U:\CC EB 500 Reports\mmddyy\", Type:=2) Set myDateTime = Application.InputBox(prompt:="Enter Date and Time", Default:="mm/dd/yy hh:mm am", Type:=2) Windows("PERSONAL.XLS").Visible = True Workbooks("Personal.xls").Activate Sheets("Sheet1").Select For Each myCell In myRange Workbooks.Open Filename:=myFile.Text & myCell.Value |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help: Compile error: type mismatch: array or user defined type expected | Excel Programming | |||
Error 424 with inputbox method after OK | Excel Programming | |||
Inputbox method using type:=8 - How to Cancel? | Excel Programming | |||
Inputbox method using type:=8 - How to Cancel? | Excel Programming | |||
Inputbox method using type:=8 - How to Cancel? | Excel Programming |