Three Crucial Points for Proper Resource Assignments in Microsoft Project

Know the Basic Scheduling Formula Duration = Work/Units Understanding  of  the  meaning  of  these  three  terms (See Project Help), as well as the formula itself, is key to  understanding  how  Project  schedules  a  task.    To anyone who has changed any of these three parameters on  a  task,  without  understanding  this  formula,  the  changes  that  Project 

Three Crucial Points for Proper Resource Assignments in Microsoft Project Read More »

Three Crucial Points for Proper Resource Assignments in Microsoft Project

Know the Basic Scheduling Formula Duration = Work/Units Understanding  of  the  meaning  of  these  three  terms (See Project Help), as well as the formula itself, is key to  understanding  how  Project  schedules  a  task.    To anyone who has changed any of these three parameters on  a  task,  without  understanding  this  formula,  the  changes  that  Project 

Three Crucial Points for Proper Resource Assignments in Microsoft Project Read More »

Developing a Learning Plan

A guide to developing a learning plan Meeting needs in a challenging climate — smaller budgets, greater needs Organisations need to ensure realistic returns on their investment in employee training programs. For many, identifying benefits from training such as improved performance, increased efficiency and reduced time on everyday tasks are difficult to measure. Often, when

Developing a Learning Plan Read More »

Top Ten Tips To Speed Up Your VBA Code

1. Turn off Screen Updating This will stop the screen flickering and updating while executing or running macros, and that will greatly speed up your code. Sub Stop_ScreenUpdating ()  Application.ScreenUpdating = False  ‘… (Your Code)  Application.ScreenUpdating = True End Sub Tip: Use Application.ScreenUpdating = False at the beginning of your code and Application.ScreenUpdating = True

Top Ten Tips To Speed Up Your VBA Code Read More »