Carry out a cross-cast check in excel

liamdocherty

New Member
Joined
Jan 1, 2019
Messages
8
2.1Carry out a cross-cast check(on the funding worksheet – Total Funding) that uses secondary columns to perform the same calculation but in a different way to ensure your spreadsheet shows it is accurate.

How can I perform a cross check in my total funding that uses secondary columns to perform the same calculation but in a different way to ensure your spreadsheet shows it is accurate?

https://imgur.com/a/8iTc3Ju

Thanks,
Liam.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
There aren't too many "secondary columns". The only thing I can think of would be to compare the total of Column H with a SUMPRODUCT of the individual columns.
Something like:

Code:
SUM(H5:H24) = SUMPRODUCT((E5:E24*F5:F24)+G5:G24)


And, you could expand the range a bit if you weren't sure how many lines there were:

Code:
SUM(H5:H30) = SUMPRODUCT((E5:E30*F5:F30)+G5:G30)
 
Upvote 0
You could put it anywhere, really. The formulas are not dependent on the location.
I only have a picture rather than the actual data, so here is a complete example (only a few rows) with the checksum at the top.
You would know if something was wrong if the two totals at the top don't match at any given time:


EFGHI
2$15,300 Sum of Totals
3$15,300 Checksum
4
5Course CostAttendeesBasicExtraTotal
6$1,000 5$5,000 $100 $5,100
7$1,000 10$10,000 $0 $10,000
8$100 2$200 $0 $200

<colgroup><col style="width: 25pxpx"><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
F2=SUM(I6:I17)
F3=SUMPRODUCT( (E6:E17*F6:F17) + H6:H17 )
G6=E6*F6
G7=E7*F7
G8=E8*F8
I6=G6+H6
I7=G7+H7
I8=G8+H8

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,346
Messages
6,124,417
Members
449,157
Latest member
mytux

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top