Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to modify the macro below so that it will prompt the user for the
4 digit year and two digit month, the rest of the path and filename will remain static... The users will need to run this on a monthly basis, we don't want them changing the path or "Costs_Plant_HWM.txt" part of the statement. Help? Dim FileNum As Long, i As Long Dim y As Variant Dim lastrow As Integer Range("a1").Select Selection.End(xlDown).Select lastrow = ActiveCell.Row Range("a1").Select Selection.End(xlToRight).Select last_col = ActiveCell.Column FileNum = FreeFile Open "c:\200706_Costs_Plant_HCM.txt" For Append As #FileNum For i = 1 To lastrow With Application.WorksheetFunction y = .Transpose(.Transpose(Range(Cells(i, 1), Cells(i, last_col)))) End With Print #FileNum, "~" + Join(y, "~") + "~" Next Close #FileNum |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
XL VB noobie needs help - macro opening file already in use prompt | Excel Programming | |||
Macro to Prompt for File -- Neophite Needs HELP | Excel Discussion (Misc queries) | |||
CLOSE ALL macro for XL2K (but with prompt to save for each file)? | Excel Programming | |||
Prompt for file name in a macro | Excel Discussion (Misc queries) | |||
Macro: Prompt user for xls file to add chart | Excel Programming |