Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cdrivanova

    Concatenate custom text fields into one Enterprise text field

    Well, actually it's not an unreasonable thing to do. In the text field, we list the software defects that will be resolved in that particular task. Then, we want to compile a complete list of all the defects that are being resolved in the entire project. It can be done, but you can't get an...
  2. cdrivanova

    Concatenate custom text fields into one Enterprise text field

    Hi all, How can I concantenate X number of text fields into one Enterprise text field? I know the code to just concatenate 2 fields and populate a third field: Sub addFields() Dim t As Task For Each t In ActiveProject.Tasks If Not t Is Nothing Then _ t.Text3 =...
  3. cdrivanova

    Enterprise fields: formulas not working in Project level fields

    Hi all, I'm working on the Enterprise Global Template (MS Project Server 2003) and have created the following custom fields: Enterprise Task Text2 "Milestone Type" Enterprise Project Date1 "PA" In the Enterprise Project Date1 custom field, I have the formula...
  4. cdrivanova

    Preventing individual task deletion

    Hi all, We have a number of tasks in our project template that we want to prevent project managers from deleting. These particular tasks are used for reporting and views (we're using MS Project Pro and Server 2003). Is there any way to protect an individual task? Thanks, Phyllis
  5. cdrivanova

    MS Project Server 2003: Can't indent Enterprise Outline Codes

    Interesting problem here: We're just starting a deployment of MS Project Server 2003 and so are beginning our Enterprise Global MPT modifications. When customing an Enterprise Outline Code, one person in our admin group is unable to indent the task when editing the lookup table. He is able to...
  6. cdrivanova

    FilterEdit Method not working

    I figured it out. For the 2nd, 3rd, etc. queries, the FieldName field should be "" and you add in NewFieldName with the new info. Otherwise, you continually overwrite the first field. So, the updated code should look like this: FilterEdit Name:="L10n_Filter&quot...
  7. cdrivanova

    Visual Basic: Delete item from global.mpt

    Hi all, I've written a macro that creates a map in the global.mpt, but as a clean-up function after running the macro, I'd like to delete the map. For other items, you can use OrganizerDeleteItem, but it doesn't work on the global.mpt. Alternatively, I could create the map in the...
  8. cdrivanova

    FilterEdit Method not working

    Newbie here -- please be patient! [ponytails] I'm writing a filter in MS Project that filters down to a specific resource working on a task of 1) a duration greater than 0 days and 2) which has not yet been completed (i.e, % Complete is less than 100%). I'm using the FilterEdit method within a...

Part and Inventory Search

Back
Top