Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Q: Dynamic Links in Task List

Status
Not open for further replies.

Guest
I would like to make the URLs attached to Tasks in the Task list dynamic... specifically, I'd like to add the Active Project ID as a URL paramater.

In other words, I'd like a URL like this:
where ## is the active project ID.

Thanks in advance,

=dave=
 
Replies continue below

Recommended for you

This is what the macro recorder got for entering a URL in a text1 column:
Sub Macro1()
' Macro Macro1
' Macro Recorded Sun 7/28/02
SetTaskField Field:="Text1", Value:=" TaskID:=1, ProjectName:="Project1"
SelectTaskField Row:=2, Column:="Text1", RowRelative:=False
End Sub

So... you should be able to set up a loop and simply concatenate what you want to the default URL.

TTFN
 
Status
Not open for further replies.
Back
Top