A family of Microsoft relational database management systems designed for ease of use.
Hi,
First he easy question. There is only one good bok on Project VBA: "VBA programming for Microsoft Office Project" by Fellow MVP Rod Gill.
A code about duplicates may look like this:
set Col1=activeproject.tasks
set Col2=activeproject.tasks
For each T1 in Col1
if not T1 is nothing then
for each T2 in Col2
if not T2 is nothing then
If T2.ID>T1.ID then
if T2.name=T1.name then
T2.Flag1=true
end if 'names same
end if 'only for higher IDs
end if 'T2 is nothing
next T2
end if 'T1 is nothing
next T1
Greetings,