I have the following formulas that sum or subtract other formulas, for example:
='Test Sheet'!E2+'Test Sheet'!E3+'Test Sheet'!E4+'Test Sheet'!E5
I'd like to write a macro that separates each item and introduces it in the row below. So if the formula above was in cell C1 the result would be:
C1: ='Test Sheet'!E2
C2: +'Test Sheet'!E3
C3: +'Test Sheet'!E4
C4: +'Test Sheet'!E5
The initial formula could be longer or shorter and include (+ or -).
(='Test Sheet'!E2+'Test Sheet'!E3+'Test Sheet'!E4+'Test Sheet'!E5)
