Without Macros, you can accomplish similar:
1. Instead of pasting normally, you can always use Paste Special...
2. Use INDIRECT.
For example, let's assume that the sheets you want to add from are named "January" to "December".
COL A COL B
January =INDIRECT(A1&"!E46")
February =INDIRECT(A2&"!E46")
March =INDIRECT(A3&"!E46")
April =INDIRECT(A4&"!E46")
May =INDIRECT(A5&"!E46")
June =INDIRECT(A6&"!E46")
July =INDIRECT(A7&"!E46")
August =INDIRECT(A8&"!E46")
September =INDIRECT(A9&"!E46")
October =INDIRECT(A10&"!E46")
November =INDIRECT(A11&"!E46")
December =INDIRECT(A12&"!E46")
To leave permanent record of those values you would then copy From B1:B12 to, say C1, Paste Special, Values