psycoperl
Active Member
- Joined
- Oct 23, 2007
- Messages
- 339
- Office Version
- 365
- 2016
- Platform
- Windows
- MacOS
- Web
I am working on a spreadsheet that I use to track Claim Submissions and Claim Payments.
What I am trying to do is in cell I1 to have the following: Total Spend Reimbursement (Claim Amounts (D) that have been marked as Received (F)) Sum of values in Column D where Column F="Y"
Currently I have the calculation in each row, but I just want to have one single value since it is not a number that is dependent on a specific row.
What I am trying to do is in cell I1 to have the following: Total Spend Reimbursement (Claim Amounts (D) that have been marked as Received (F)) Sum of values in Column D where Column F="Y"
Currently I have the calculation in each row, but I just want to have one single value since it is not a number that is dependent on a specific row.
Claims Tracking.xlsx | |||||||||
---|---|---|---|---|---|---|---|---|---|
D | E | F | G | H | I | J | |||
1 | $ 1,051.92 | $ 1,132.08 | |||||||
2 | Amount | Submitted Date | Received? | Total Spend | Spend Balance | Spend Reimubsement | Unallocated Reimbursement | ||
3 | $ 100.00 | 2/13/23 | Y | $ 100.00 | $ 371.66 | ||||
4 | $ 30.00 | 2/13/23 | Y | $ 130.00 | $ 341.66 | ||||
5 | $ 16.00 | 2/13/23 | Y | $ 146.00 | $ 325.66 | ||||
6 | $ 30.00 | 2/13/23 | Y | $ 176.00 | $ 295.66 | ||||
7 | $ 24.38 | 2/13/23 | Y | $ 200.38 | $ 271.28 | ||||
8 | $ 30.00 | 2/13/23 | Y | $ 230.38 | $ 241.28 | ||||
9 | $ 30.00 | 2/13/23 | Y | $ 260.38 | $ 211.28 | ||||
10 | $ 20.00 | 2/13/23 | Y | $ 280.38 | $ 191.28 | ||||
11 | $ 2.29 | 2/13/23 | Y | $ 282.67 | $ 188.99 | ||||
12 | $ 125.00 | 2/13/23 | Y | $ 407.67 | $ 63.99 | ||||
13 | $ 1.49 | 2/13/23 | Y | $ 409.16 | $ 62.50 | ||||
14 | $ 32.08 | 2/20/2023 (Resub 4/16/2023) | $ 409.16 | $ 62.50 | |||||
15 | $ 37.50 | 2/25/23 | Y | $ 446.66 | $ 25.00 | ||||
16 | $ 25.00 | 2/25/23 | Y | $ 471.66 | $ - | ||||
17 | $ 50.00 | 3/22/2023 (Resub 4/16/2023) | $ 471.66 | $ - | |||||
18 | $ 30.00 | 3/22/2023 (Resub 4/16/2023) | $ 471.66 | $ - | |||||
19 | $ 50.00 | 3/22/2023 (Resub 4/16/2023) | $ 471.66 | $ - | |||||
20 | $ 12.50 | 3/22/23 | $ 471.66 | $ - | |||||
21 | $ 2.29 | 3/22/23 | $ 471.66 | $ - | |||||
22 | $ 21.59 | 3/22/23 | $ 471.66 | $ - | |||||
23 | $ 20.00 | 3/22/23 | $ 471.66 | $ - | |||||
24 | $ 200.00 | 4/16/23 | $ 471.66 | $ - | |||||
Claims |
Cell Formulas | ||
---|---|---|
Range | Formula | |
G1 | G1 | =SUM(D:D) |
H1 | H1 | =Settings!$B$3-Claims!G1 |
I3 | I3 | =0+IF(F3="Y",D3,0) |
J3:J24 | J3 | =Settings!$B$5-Claims!I3 |
I4:I24 | I4 | =I3+IF(F4="Y",D4,0) |