In Project 2013, can I Split a Task with another Task?

If I have a task that after being initiated is delayed from further progress, I'd like to be able to create a new task for the delay, and then link the start of the delay task to the end of the first split and link the end of the delay to the front of the
second split.
Is this possible, or do I need to break the original task into two separate lines after a delay occurs (technically, I would likely also have to create a summary task to encompass both the task work and the delay work).
BTW, I want to create the delay as a separate task because I want to be able to track the different types of delays that happen.
For Example, If I had a task to test a part, but the test equipment breaks during the testing, I would like to track the time it takes to repair the equipment and have that time push out the expected completion of the testing.  If on another testing
activity, a software glitch occurs, I want to track that delay as well.  At the end of the day, I'd like to pull a report of the types of delays, the time they took, and how they pushed back the completion of the testing activities.  I'd rather not
have to be creating a lot of extra lines in the project file whenever a delay occurs.
Thanks!
Thanks,

Running Man,
As an adjunct to Julie's suggestions, in order to get what you want you are going to have to add extra tasks to represent each delay activity, (e.g. equipment delay, software delay, critical part delay, etc.), unless you want to live dangerously (more on
that later).
I'll offer another idea for reporting. You mention that at the end of the day you would like to see a summary of all delay activities. Here's a thought. Use a text field or even a number field and enter a word/code for each type of delay. You can then filter
or group on those words/codes to see those specific delay tasks. If you use grouping, Project will create a group summary line that will sum up delay hours for you.
Now about living dangerously. If you don't want to add tasks to your main file each time a delay occurs, you could track those separately in another file. The least dangerous way is to manually enter the delay tasks in the separate file and adjust the split
re-start in the main file as Julie suggests. The more dangerous approach is to use external links between the two files. You may or may not need a separate linking milestone to use as the link point, depending on how it is set up. Why is this approach dangerous?
Because any linked structure in Project is prone to corruption.
John

Similar Messages

  • I have few muse projects how can I  integrate them in an another muse website which I have just created?

    i have few muse projects how can I  integrate them in an another muse website which I have just created? How can I make link between  HTML document inside muse. The Html document   (saved on my desktop )is another web project  done with css3 and Html but for my portfolio I need to create an HTML link  so the project can be viewed by others.

    Perhaps with iFrame Builder Lite | Exchange | Adobe Muse CC ?

  • HT204266 how can I update my app with another account?

    how can I update my app with another account?

    kambiz.fakhr wrote:
    how can I update my app with another account?
    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    Apple ID FAQs  >  http://support.apple.com/kb/HT5622

  • Face time with wifi only.  I have a 4Gs iPhone traveling to Japan.  Can I use face time with another 4Gs or IMacback in the States using just wifi and with I have my Celluar Data and Data Roaming off?

    Face time with wifi only.  I have a 4Gs iPhone traveling to Japan.  Can I use face time with another 4Gs or IMacback in the States using just wifi and with I have my Celluar Data and Data Roaming off?

    Thanks,  After changing my settings in face time per your suggestion, (it needed to be done),  I turned off cellular data and data roaming and made a call using face time.  It worked!  Great way to stay in touch while overseas without the need for those egregious phone data plans. 

  • My pc broke! How can I syncronize my iphone with another pc?

    My pc broke! How can I syncronize my iphone with another pc?

    You can only sync with one computer, do you not have a backup of your library to transfer to the new computer?
    If not the only way is to transfer purchases
    http://support.apple.com/kb/ht1848
    http://support.apple.com/kb/ht1727
    For non-purchased content you will need to find a 3rd party app

  • How can I share my screen with another apple computer?

    How can I share my screen with another apple computer?

    By enabling Screen Sharing in the Sharing preferences. Both computers need to be connected to your local network, preferably by Ethernet.

  • HT1491 Can my purchases be shared with another apple id?

    Can my purchases be shared with another apple id?

    No. Home Sharing allows you to share purchases with another device. It does not allow sharing with another Apple ID. From the instructions:
    you will need to Turn on Home Sharing on each computer using the same Apple ID.
    In any case, that's not what adolf wanted to do. He wanted to transfer apps purchased under an old iTunes Store account to a new one so he could update the apps using the new account, and that cannot be done.
    Regards.

  • HT201195 can a card be shared with another account, say a spouse, etc.?

    can a card be shared with another account, say a spouse, etc. ?

    If you mean an iTunes Store gift card, no.
    (99478)

  • Project 2013 REST API - getting all tasks assigned to a user

    I'm trying to get all tasks assigned to a user to display something like you would see in "My Tasks" using the REST API.
    I found this: http://social.technet.microsoft.com/Forums/projectserver/en-US/a5d8760d-8e27-432b-8187-592cadf302ae/get-my-tasks-tasks-via-rest-api-or-web-services?forum=sharepointdevelopment
    But it doesn't seem to pertain to Project 2013.
    Any idea on how I could do this?
    As an aside, I'm having some trouble with finding guidance in the documentation. Are there any Project 2013 developer resources that break things down a little more than the SDK? Everything I've found is pretty Sharepoint-centered, not really getting into
    the specifics of Project.

    Check the samples folder which gets installed with SDK, there you will find some samples, however may not be the REST but with CSOM you could try something like this, i am sure you would be able to convert this pretty easily, in case required
    projContext = new ProjectContext(pwaPath);
    var PrjList = projContext.LoadQuery(projContext.Projects.Where(Prj => Prj.Name == newProjName));
    projContext.ExecuteQuery();
    var GotPrj = PrjList.First();
    //DraftProject projCheckedOut = GotPrj.CheckOut();
    projContext.Load(GotPrj.Tasks);
    projContext.ExecuteQuery();
    foreach (var tsk in GotPrj.Tasks)
    this.textBox1.Text += Environment.NewLine + "Task Name: " + tsk.Name + " || Task Work: " + tsk.Work +" || Task Remaining Work: " +tsk.RemainingWork;
    projContext.Load(tsk.Assignments);
    projContext.ExecuteQuery();
    foreach (var tskAssgn in tsk.Assignments)
    projContext.Load(tskAssgn.Resource);
    projContext.ExecuteQuery();
    this.textBox1.Text += Environment.NewLine + tskAssgn.Resource.Name + "--Res ID--" + tskAssgn.Resource.Id +
    "----Assgn ID: " + tskAssgn.Id + " || Actual Work: " + tskAssgn.ActualWork +
    " || Assgn Remaining Work: " + tskAssgn.RemainingWork
    + " || Assgn minDate: " + tskAssgn.Start
    + " || Assgn maxDate: " + tskAssgn.Finish
    Thanks | epmXperts | http://epmxperts.wordpress.com

  • Integrating Exchange 2013 & Lync Server 2013: can't use a certificate with Seth-AuthConfig

    I'm trying to integrate Exchange and Lyn Server. One of the first steps is to bind a correct certificate to IIS on all of the CAS servers and set it as a main certificate in the global AuthConfig object. The certificate must be the same on all of the
    CAS servers because the autodiscover.domain.local DNS record points to all of them, and Lync Server uses this FQDN to access Exchange servers. The thumbprint of this certificate must be specified in Set-AuthConfig command run on an Exchange server.
    We have an internal enterprise CA. I generated a certificate on one of the CAS servers and bound it to all of the Exchange services. Then I exported it, imported it on the second CAS server and bound it to all of the services as well. Now Exchange correctly uses
    it for OWA, for example, and IE gives no security warnings when I connect to OWA.
    However, whenever I run Set-AuthConfig command on any server, it keeps telling me that
    The certificate with thumbprint XXXX was found but is not valid for use with Exchange Server (reason: PrivateKeyNotAccessible).
    The key IS accessible - I can export the certificate along with its private key. What's wrong?

    Here's the answer.
    It seems that the -Server switch in the Set-AuthConfig command is only used to specify where you want to look for the certificate with the given thumbprint. However, it's impossible to predict which Exchange server will actually perform the operation
    (the Server switch doesn't influence it a bit). It could be ANY server, even a mailbox one with no CAS role at all. And, of course, another Exchange server has no access to the certificate store of the CAS server where the certificate is actually stored. It
    was exactly the case in my environment.
    So in order to enable this certificate you must import it on ALL of your Exchange servers. You need't (and even shouldn't) enable it for any services on your mailbox servers if you don't want to, just import it.

  • HT3819 How can I share my music with another apple ID device

    Can I share the music on my iPad with another iPad, the other iPad has a different Apple ID

    The correct answer to your question is No - you cannot "share" Music with another device using a different Apple ID. Can you make it work - yes you can.
    You do not want to sign into the other Apple ID and download the purchased music because you will lock yourself out of your own Apple ID for 90 days. Apple does this in order to discourage users from "sharing" purchased content that they did not buy themselves.
    Whatever you decide to do, just don't download the music from the purchased tab in iTunes, because you don't want to lock yourself out of your own ID for 90 days.
    iTunes Store: Associating a device or computer to your Apple ID

  • Can I share an Account with another user?

    I am a current Thunderbird user, as are my coworkers. One of my coworkers is getting bogged down with emails he shouldn't waste time on.
    What I need is a way for me to access his email and filter out junk mail and emails he shouldn't be concerned with. So he would need to see any emails I have flagged or starred indicating they need his attention when he opens his email.
    In addition to this, my coworker will also need to be able to access and read emails offline. Ideally he would be able to access his email while on a plane and see the flagged emails here as well. Then once he is able to access the internet again, it would be best if he and I would be able to see the updates that he made while offline.
    Ultimately, I need to know if I can continue to use Thunderbird and tag team an email account(s) with another user.

    There's nothing to stop you both setting up the same account, though there's a risk the server won't let you both use it concurrently.
    You'll both need to use IMAP if your colleague is to be able to see the results of your activities.
    An alternative is for you to assume total ownership of the colleague's account, do your triage and then send on approved messages to a new account set up for your colleague purely for this arrangement. Mail Redirect would allow you to pass messages to your colleague which would appear to have come directly from the original sender, whereas regular email forwarding loses the provenance.

  • Can I Use Game Center With Another iPad User?

    Am I able to play a game simultaneously with another iPad user by using game center? For example, can we play a hangman game against each other from different locations if we do it through game center? And if so, how?
    Thank you.

    This is possible, however it is not as easy as that.
    If you want to allow someone to have access to a purchase you have made on your Apple ID, you must log into their device with your Apple ID and download that purchase..You would then simply log back out again.
    Every purchase you make with your Apple ID gives you the licence to store the purchase accross 5 devices.
    On the other persons device, go to Settings > Store > Apple ID > Sign Out.
    Sign into their device the same way, then go into iBooks > Store > Purchased, and download your book.
    Once downloaded, go back into Settings > Store > Apple ID > Sign Out, then sign back in with their Apple ID.

  • HT4059 can I share i books with another i phone user?

    Can I share iBooks that I have purchased with another iPhone user?
    If so, how do I do that?

    ibooks (and other content downloaded from Apple) are tied to your iTunes account - so unless they have access to your account then no.

  • How can I share contact list with another MAC

    How can I share my contact list with another MAC?

    Hi,
    There does seem to be a presumption in the other reply that your girlfriend is living with you.
    A File transfer via Bonjour would then work.
    Also the File Sharing in System Preferences > Sharing would cause her computer to show up on your Finder's side bar as a Share.
    With iChat if you both have AIM Login names you could still do File Transfers.
    (It is slightly more complicated if you have Jabber ID logged in alothough not impossible).
    9:54 PM      Sunday; January 15, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

Maybe you are looking for

  • Turn Sound OFF in Javascript or HTML

    My client would like the Flash banner I'm using to play audio only on the home page. Can I shut the sound off in javascrpt or html (in the object tag properties)? Client does not want a sound toggle button - simply no sound. I know I can create a sec

  • Gmail Chat not working in Safari

    When I go to the Gmail page, the box that usually shows up on the left hand side which lists my contacts and allows me to chat with others who are logged into Gmail doesn't show up. If I user another browser, like Camino, it does show up. I've looked

  • How to attach logos in smartforms using standard text??

    logos in smartforms using standard text

  • App module view object row currency and task flows

    Hello - Using JDev 11gR1. My application uses ADF Rich Faces with ADFBC. I have case where I want to a. select a row in a table based on a view object b. hit a button to invoke a method in an application module. c. in the app mod method, call getMyVi

  • Easier way to convert array to cluster with named variables?

    I have an array of variables, I would like to essentially unbundle that array to named variables. I believe the only way of doing this is by converting the array to cluster (besides removing each element one by one)? Is what I have done below the bes