I have the following table with data
While the formula works as designed, I need a way to modify the formula to account for reduction for cleaning solvents:
For any rows having Cleaning Solvent CS-1 (Col B), then multiply the result of those row calculations by 0.1
So for January instead of 4.46*300, it should be 4.46*300*.1
For any rows having Cleaning Solvent CS-2, then multiply the result of those row calculations by 0.5
So for January instead of 3.38*100, it should be 3.38*100*.5
The correct results for 1/1/24 should then be: 3,126
The correct results for 2/1/24 should then be: 1,707
Please note I still use Excel 2019
Code | Category | Vx | 1/1/24 | 2/1/24 | 3/1/24 | 4/1/24 | 5/1/24 |
AT370-3Mx | Primer | 2.17 | 58.5 | 105 | 142.5 | 125 | 147 |
AM-29711Mx | Topcoat | 0.88 | 28 | 24 | 10.8 | 20 | 8 |
E61W00753-EXP | Primer | 2.20 | 275 | 110 | 220 | 220 | 220 |
F75EXA16707 | Topcoat | 1.88 | 275 | 220 | 220 | 275 | 275 |
E61XXA16720-4366 | Primer | 3.46 | 440 | 110 | 165 | 220 | 330 |
ENGC11131 | Cleaning Solvent CS-2 | 3.38 | 100 | 250 | 700 | 100 | 200 |
CGC111 | Cleaning Solvent CS-1 | 4.46 | 300 | 0 | 100 | 5 | 10 |
ALK-314003 | Topcoat | 5.47 | 0 | 0 | 0 | 1 | 0 |
ALK-000761 | Topcoat | 5.38 | 0 | 0 | 0 | 0 | 5 |
CGC112 | Cleaning Solvent CS-1 | 0.20 | 400 | 0 | 0 | 0 | 0 |
ENGC0 | Cleaning Solvent CS-2 | 0.19 | 200 | 0 | 300 | 0 | 0 |
Current formula for 1/1/24: | |
'=SUMPRODUCT($C$7:$C$17,(INDEX($D$7:$H$17,,MATCH(A23,$D$6:$H$6,0)))) | |
1/1/24 | 4,589 |
2/1/24 | 2,130 |
While the formula works as designed, I need a way to modify the formula to account for reduction for cleaning solvents:
For any rows having Cleaning Solvent CS-1 (Col B), then multiply the result of those row calculations by 0.1
So for January instead of 4.46*300, it should be 4.46*300*.1
For any rows having Cleaning Solvent CS-2, then multiply the result of those row calculations by 0.5
So for January instead of 3.38*100, it should be 3.38*100*.5
The correct results for 1/1/24 should then be: 3,126
The correct results for 2/1/24 should then be: 1,707
Please note I still use Excel 2019