We've been working with the new download that you've provided and have bumped into what I hope is a minor problem. It has to do with one of the column names/headers. Please see the example below. DRAmount,CRAmount,Amount We want to use the data in the AMOUNT Column, And we have a sub-routine that searches through the column headers. So that if you needed to move the columns around on your end, it would not impact any of our code. Say that AMOUNT started out in 16, but in a later version you moved it to 10, or 20, or whatever. Then our sub-routine looks for AMOUNT, and finds it in the new column. And the user never even knows about the change. However, as can be seen above the Key AMOUNT already exists in the column header DRAmount. So our code has been returning a column value of 14 instead of 16, and our import has appeared to be skipping all the CREDIT amounts, Because it was processing the column for DRAmount instead of Amount. Can we change the column header from AMOUNT to include some extra characters to make the header unique. Literally Xamount or AmountX would work for me, but something that makes a bit more sense would be equally functional. (TotAmount, MergedAmount, or even just Amt) Just as long as the new column header is NOT a partial match for DRAmount and CRAmount. Thanks, Dow