The easiest way is to use a defined dynamic range for the data, then put your summary on another sheet.
Let's say your data is on a sheet labeled Import, and column K has the totals. Go to INSERT > NAME > DEFINE. In the dialog box, give it a name, i.e. KTotal. In the Refers to box at the bottom put in this formula:
=OFFSET(Import!$K$1,0,0,COUNTA(Import!$K:$K),1)
Click ADD, then OK.
Now on another sheet, put in this formula into cell A1:
=SUM(KTotal)
Now, when you refresh your data, the named range will appropriately change, and so the sum formula will reflect that change.