Forum Discussion
lauraIBT
Oct 23, 2019Copper Contributor
Help - Formula works in one sheet but not another?
I have a formula which works great in one sheet but not in any other sheets within the same workbook. I have tried both copy and pasting into a new sheet and retyping the formula. The formula is ...
lauraIBT
Oct 27, 2019Copper Contributor
Thank you for your reply but this hasn't made a difference, your formula works perfectly in the first sheet but will only return 0 in all other sheets in the workbook.
I think this might be a problem with the sheet setting rather than the formulas
SergeiBaklan
Oct 28, 2019Diamond Contributor
You may try
=SUM(IF(MOD(COLUMN(F5:CM5),3)=0,--F5:CM5,0))
or better
=SUMPRODUCT(IF(MOD(COLUMN(F5:CM5),3)=0,--F5:CM5,0))
- lauraIBTOct 28, 2019Copper Contributor
Thank you but still no change, returns 0 in all other sheets but the first.
- SergeiBaklanOct 28, 2019Diamond Contributor
lauraIBT , if you simply enter =SUM(F5) in any empty cell of the first sheet, and the same into the empty cell of the second sheet, what do they return? Assuming F5 is not empty in both sheets.
- lauraIBTOct 28, 2019Copper ContributorThey return the value of F5 (ie -300) in all sheets.