【发布时间】:2020-10-09 12:44:24
【问题描述】:
我想创建一个自动化工具来导入 Microsoft Project 文件的 excel。我正在尝试在 VBA 中实现这一点(请建议我,如果那里有任何其他选项)并且我研究了一些基本设置的代码。
我找到了以下链接来设置系统和代码来执行此自动化,但仍然不确定下面的代码是否与我的发现完全相同。
来源:
Automate creating n Microsoft Project files from an excel file with n rows
我想使用 Mapping 字段编写更新脚本,并且 创建/附加为新项目。
更新
在以下答案的帮助下,我重写了代码以导入多个文件并将其保存为 *.mpp 文件。
但问题是 mpp 文件正在打开,它应该发生在后端用户不应该查看任何东西。
代码:
Private Sub ImportButton_Click()
On Error GoTo Exception
Dim InputFolderPath As String, DefaultInputFolderPath As String, DefaultOutputFolderPath As String
Dim fileExplorer As FileDialog
InputFolderPath = ""
DefaultInputFolderPath = "D:\Sample Projects\MPP Import\Input\"
DefaultOutputFolderPath = "D:\Sample Projects\MPP Import\Output\"
Set fileExplorer = Application.FileDialog(msoFileDialogFolderPicker)
'To allow or disable to multi select
fileExplorer.AllowMultiSelect = False
If fileExplorer.Show = -1 Then 'Any folder is selected
InputFolderPath = fileExplorer.SelectedItems.Item(1) & "\"
Else
InputFolderPath = DefaultInputFolderPath
End If
Call CreateProjectFromExcelFile(InputFolderPath, DefaultOutputFolderPath)
Exception:
Select Case err.Number ' Evaluate error number.
Case 0
Exit Sub
Case Else
MsgBox "UNKNOWN ERROR - Error# " & err.Number & " : " & err.Description
End Select
Exit Sub
ExitCode:
Exit Sub
End Sub
Public Sub CreateProjectFromExcelFile(InputFolderPath As String, DefaultOutputFolderPath As String)
Dim myFile As String, myExtension As String, oFullFilename As String, oFilename As String
' get access to Project application object
Dim appMSP As MSProject.Application
On Error Resume Next
' see if the application is already open
Set appMSP = GetObject(, "MSProject.Application")
If err.Number <> 0 Then
' wasn't open, so open it
Set appMSP = CreateObject("MSProject.Application")
End If
' return to whatever error handling you had
On Error GoTo 0
appMSP.Visible = False
MapEdit Name:="ImportMap", Create:=True, OverwriteExisting:=True, DataCategory:=0, CategoryEnabled:=True, TableName:="Data", FieldName:="Name", ExternalFieldName:="Task_Name", ExportFilter:="All Tasks", ImportMethod:=0, HeaderRow:=True, AssignmentData:=False, TextDelimiter:=Chr$(9), TextFileOrigin:=0, UseHtmlTemplate:=False, IncludeImage:=False
MapEdit Name:="ImportMap", DataCategory:=0, FieldName:="Duration", ExternalFieldName:="Duration"
MapEdit Name:="ImportMap", DataCategory:=0, FieldName:="Start", ExternalFieldName:="Start_Date"
MapEdit Name:="ImportMap", DataCategory:=0, FieldName:="Finish", ExternalFieldName:="End_Date"
MapEdit Name:="ImportMap", DataCategory:=0, FieldName:="Resource Names", ExternalFieldName:="Resource_Name"
MapEdit Name:="ImportMap", DataCategory:=0, FieldName:="Notes", ExternalFieldName:="Remarks"
' open the Excel file to import
Dim strFilepath As String
'Target File Extension (must include wildcard "*")
myExtension = "*.xlsx"
'Target Path with Ending Extention
myFile = Dir(InputFolderPath & myExtension)
'Loop through each Excel file in folder
While myFile <> ""
If (myFile = "") Then
MsgBox ("No files avaalable!")
GoTo ExitCode
End If
'This example will print the file name to the immediate window
strFilepath = InputFolderPath & myFile
oFullFilename = Right(strFilepath, Len(strFilepath) - InStrRev(strFilepath, "\"))
oFilename = Left(oFullFilename, (InStr(oFullFilename, ".") - 1))
appMSP.Visible = False
appMSP.FileOpenEx Name:=strFilepath, ReadOnly:=False, Merge:=1, FormatID:="MSProject.ACE", Map:="ImportMap"
appMSP.FileSaveAs Name:=DefaultOutputFolderPath & oFilename & ".mpp"
'Set the fileName to the next file
myFile = Dir
Wend
appMSP.FileCloseAllEx pjDoNotSave
Set appMSP = Nothing
MsgBox ("Imported Successfully...")
ExitCode:
Exit Sub
End Sub
【问题讨论】:
-
更具体地说明“读取 objMSP 值时出现运行时错误”,因为
objMSP是应用程序对象。哪条线路导致错误。见How to create a Minimal, Reproducible Example。 -
您展示的代码演示了从 MS Excel VBA 自动化(控制)MS Project。如果您对此有疑问,请更改您的问题以删除有关导入的部分。如果您的问题确实与导入有关,请具体说明您要做什么。例如,您是否尝试从 Excel 文件创建新计划?或者从 Excel 文件更新任务值?在 Excel 和 Project 中显示数据的屏幕截图。
-
@RachelHettinger 我非常具体,我想从现有的 Excel 创建新的计划或更新计划,但我不知道如何从 VBA 开始。你能提供一些样品吗?我将更新您的 Excel 屏幕截图。另外,我如何使用 VBA 中的映射字段。
标签: excel vba ms-project