In general, you do not want to symbolically integrate an interpolation of data points. This will probably work fine for your example, but please keep in mind this is not a good idea in general. It wouldn't be acceptable for published work.
I strongly recommend that new users avoid using Subscript. Subscripts have different meanings in different contexts and are really ambiguous. I make this recommendation after having seen many many people like you in the past become very confused and frustrated with the ambiguity.
When you run into a problem like this, the first step is to create the smallest possible example which reproduces your problem. Here is a small example, like yours:
Table[Integrate[f[x], x], {x, 1, 1}]
Integrate::ilim: Invalid integration variable or limit(s) in 1. >>
The problem is that Table replaces all instances of x with 1. Resulting in this nonsensical code:
Integrate[f[1], 1]
I am not sure what you want to accomplish, otherwise I'd show you how to work around this problem.