Questions tagged [ms-project]

Microsoft Project is a tool to help plan projects and track progress against that plan

Microsoft Project is a software tool for planning projects at granular level and tracking progress against that plan. You can:

  • plan projects
  • create teams
  • create resources and manage their working time
  • manage tasks and allocations of resources to tasks
  • create timesheets
  • track work progress (actuals)
  • track project costs

and much more in a single intuitive interface.

This tag is for programming questions related to the use of . General questions about MS Project use should be referred to superuser.com.

Links:

999 questions
-1
votes
1 answer

VBA Microsoft Project Professional 2016: How do I read Actual Hours and Work (Hours) by task by resource by day date?

I am simply trying to extract Actual and Work Hours data per day for each Task and Resource? I can get one value (Work Hours) daily, but how do I get all the data I need per day? Example: 10/2/2021, Tell Jokes, Rod Gilbert, 4, 4 10/2/2021, Tell…
stewmuskie
  • 19
  • 4
-1
votes
1 answer

Importing a MS-Project mpp file into C# .Net Framework and exporting the data into an SQLite database using MPXJ

** Hello ** I'm creating a scheduling app that takes in 2 MS-Project .mpp files (master and updated) and converts the data into SQLite tables then compares them both and displays the results and allows you to write the changes you make back to the…
Siege
  • 1
-1
votes
2 answers

Read a “.mpp” file with C#

I am working with windows form and through a dialog window with event "OpenFileDialog.OpenFile" but I have a problem since I try to read a Microsoft Project file with extension ".mpp" Once the file is selected, it is my intention that the data…
Morquecho
  • 37
  • 1
  • 8
-1
votes
2 answers

Linq filters required on Project Context object

I am trying to get a filtered list from MS Project and filter on the name by using something akin to contains so that we can return a reduced set of results to process. projContext.Load(projContext.Projects, qp => qp.Include(qr => qr.Id, qr =>…
-1
votes
1 answer

How Do I automatically import days of resource absence?

I would like to import days of resource absence automatically through VBA macros. I imagine the thing for example, a CSV file that could contain: Resource1;25/08/2019;26/08/2019;01/11/2019 Resource2;25/08/2019;26/08/2019;01/11/2019 Thus MS project…
Kikou
  • 1,895
  • 4
  • 20
  • 32
-1
votes
1 answer

Pull data from Ms-Project into another application

I am starting with a project where I need to pull data from MS Project 2013. This data then has to be used in my application for showing different reports and dashboards etc. After some searching I see there are interfaces exposed from Project…
Subbu
  • 588
  • 1
  • 7
  • 18
-1
votes
1 answer

New to VBA, I need to change cell colour based on updates to cells

I have an MS Project document that was set up by someone else, previously the schedule would change the cell colour based on if a cell had been modified in the last week. but this has stopped working. ive exhausted my knowledge trying to fix this…
Sparrow
  • 7
  • 1
-1
votes
1 answer

Remove a node from XML file in MS Project VBA

I’d like to remove a node from my xml file using VBA in MS Project 2007. Should be so easy but I can’t get it running. Here is my XML
BBQ Chef
  • 696
  • 4
  • 11
  • 21
-1
votes
1 answer

How to add info like the shown image in Gantt chart in ms project 2007?

image is here I have to add information to the Gantt chart like the shown image for the project created. without doing the edit in adobe pdf. I know that is possible in adobe but i want to do it in ms-project 2007 itself.
Gom_Jeyan
  • 1
  • 3
-1
votes
1 answer

Moving data based on headers then copy pasting

I have a code (adapted from a few places), that is operating in one workbook, and works like this. I have a super long list of addresses that are missing from our system (SLIP), but we have them in ANOTHER system (SAP) that we're closing down. Many…
R.E.L.
  • 157
  • 1
  • 12
-1
votes
1 answer

VBA Management tool?

I use MS Project Professional 2013, and I need to find a tool for code management for VBA. I would like this tool to be able to import and export code from/to MSP and the ability to integration with TFS. Can you recommend something to me?
MessorG
  • 11
  • 3
-1
votes
1 answer

Which Event comes first Activate or Open?

In VBA for MS-Project, what code is ran first, the project_activate or project_open?
peetman
  • 669
  • 2
  • 15
  • 30
-1
votes
1 answer

Add a summary line in MS Project

How do you add a summary line for a few tasks in a MS Project schedule dynamically? Dim ProjTasks = pj.ActiveProject.Tasks ProjTasks.Add() ProjTasks(1).name = "Summary Line" ProjTasks.Add() ProjTasks(2).name =…
Frank_Vr
  • 661
  • 7
  • 23
-1
votes
1 answer

How to Copy Projects in Project Web App for Office 365

Once a Project is uploaded/Created in Project Web App on Office 365, how can that project be duplicated or copied, and renamed to form a new and separate project? Or does a brand new file have to be uploaded to Sharepoint if we want to start a new…
Michael Romrell
  • 1,026
  • 5
  • 15
  • 31
-1
votes
1 answer

How to Add List Of Project Task Details To The 'net.sf.mpxj.Task task' In C#

i have a c# object having ProjectInfo With ProjectTasks, now how can i add these projectTasks to the 'net.sf.mpxj.Task task' In C# while i am creating new object for net.sf.mpxj.Task, then it is showing error that 'the type net.sf.mpxj.Task has no…
1 2 3
66
67