I would like to create table of summation expressions, which are not evaluated, but summation limits are substituted.
I can't accomplish this so far.
If I write

I get summation expanded.
If I write:

I get "Hold" word displayed and summation limits not substituted.
If I write:

I get limits not substituted.
With[{n=n},...to inject into held expressions. – Kuba Jan 04 '15 at 19:20Inactivemay be of interest here:Table[Inactive[Sum][Subscript[a, i, j], {i, m}, {j, n}], {m, 3}, {n, 4}]. Otherwise:Table[HoldForm@Sum@## & @@ {Subscript[a, i, j], {i, m}, {j, n}}, {m, 3}, {n, 4}]– Mr.Wizard Jan 05 '15 at 10:44