I have a tab delimited list where item 4 is a number and I'm adding things up. What is considered best practice when doing this? add item 4 of line x of tList to tRunningTotal or add (item 4 of line x of tList) to tRunningTotal or add value(item 4 of line x of tList) to tRunningTotal Marty