Hello,
Diving right in to the problem at hand. I have one sheet that handles reagent requests from multiple departments and another sheet that contains all of the stock solutions these reagent requests are made from. I want successfully created a formula that works for 1 sumifs scenario.
=[Request Vol (ml)]@row - SUMIFS({Total Vol - Queue}, {Buffer Name - Queue}, "1X FC Wash", {Buffer Lot - Queue}, [Stock Buffer Lot]@row) / 10
Where:
Request Vol (ml)]@row = Total volume of 10X stock solution
{Total Vol - Queue} = Volume of 1X solution
{Buffer Name - Queue} = Name of 1X solution
{Buffer Lot - Queue} = Lot of the 1X solution that needs to match the 10X stock solution which is [Stock Buffer Lot]@row
This formula will subtract the volume of the requested reagent (buffer) from the stock solution if
- The requested buffer is "1X FC Wash"
- The Buffer Lot of the requested buffer matches the Stock Buffer lot
I divide by 10 because the stock solutions are 10X more concentrated. This formula works just fine and lets me know how much of my remaining stock solution I have of 10X FC Wash. However, I now need to add additional stock solutions to this sheet and have not found a way to do without errors.
Here is what I want the formula to do:
If the stock solution is 10X wash buffer, then sum all of the 1X Wash buffers from a separate sheet with the same lot as the 10X Wash buffer and then subtract from the total 10X wash buffer @row. If the stock solution is 10X FC Depro then sum all of the 1X FC Depro buffers from a separate sheet with the same lot as the 10X FC Depro and then subtract from the total 10X wash buffer @ row.
I have a total of 5 stock solutions that I need to string together in this formula. Any help would be appreciated!