Wireless,
Don't give up [Smile]
Read the dumpfile line by line and split the lines like this:
code:
$RC = Open(1,'Dumpfile.txt')
$Line = ReadLine(1)
While @Error = 0
$UserID = Trim(Left($Line, 19))
$FullName = Trim(SubStr($Line,20,24))
$Description = SubStr($Line,45)
; Your code here : if $userID = Administrator then ... if $FullName = Jenny then ...
$Line = ReadLine(1)
Loop
$RC = Close(1)

-Erik