A family of Microsoft relational database management systems designed for ease of use.
cb24,
It could be automated with VBA. The following macro will do it:
Sub ClearTskText()
Dim t As Task
Dim pst As Task
For Each t In ActiveProject.Tasks
If Not t Is Nothing Then
t.Text1 = ""
t.Text2 = ""
'continue sequence for Text3 through Text30
End If
Next t
End Sub
This version includes the Project Summary Task:
Sub ClearTskText()
Dim t As Task
Dim TFld As String
OutlineShowAllTasks
FilterApply Name:="all tasks"
GroupApply Name:="no group"
SelectAll
'this loop will cover all tasks including the Project Summary Task
For i = 1 To 30
TFld = "text" & i
SetTaskField Field:=TFld, Value:="", TaskID:=0
SetTaskField Field:=TFld, Value:="", allselectedtasks:=True
Next i
End Sub
Hope this helps.
John