Forum Discussion
Juliu1695
Aug 22, 2023Copper Contributor
Excel
Why is an extra dollar amount being added to the merging spreadsheet? One tab is working correctly and the other tabs that are merge to the total spreadsheet is adding an extra dollar amount.
Juliu1695
Aug 22, 2023Copper Contributor
Okay, I merged the tabs I created to a main tab to calculate the totals from each tab. Tab one calculates correctly, but the remain tabs calculate an extra dollar amount or an extra dollar amount is being calculated to the main tab (tab one).
- SergeiBaklanAug 22, 2023MVP
How do you calculate totals in the main tab? That's SUM() or SUMIFS() on ranges in each tab, or these are links to cells with totals in individual tabs, our you use lookup functions, or something else. Do tabs have the same structure.
It's better if you could illustrate on the sample file or at least on screenshots.
- Juliu1695Aug 23, 2023Copper Contributor
- SergeiBaklanAug 24, 2023MVP
Not sure what are the names of your sheets, with formula
=SUM( 'TOTALS:SHOES'!I18 )
you sum values in cell I18 in all sheets between TOTALS and SHOES, i.e. that's the equivalent of something like
=TOTALS!I18 + BALLS!I18 + SHOES!I18
Perhaps you'd like to have total only in SHOES, when it's simply
=SHOES!I18
- Juliu1695Aug 22, 2023Copper Contributor
- Juliu1695Aug 22, 2023Copper ContributorI sent some screenshots?