One easy way to do this is with a macro. Once the new worksheet is created and active, invoke the macro via shortcut key or Alt-F8. In the macro:
- set a worksheet object (named target) to the P.O Statement worksheet.
- set a string variable (named source) to the name of the new worksheet
- set an integer variable (named count) to number of the new worksheet that can be extracted from the end of string source Then, for source cells whose value should copied to target, code macro statements of the form
target.range("B21").offset(0,count-1).formula = "=" & source & "!J3"
target.range("C21").offset(0,count-1),formula = "=" & source & "!J5"