Forum Discussion
Need help figuring an Excel formula for order fulfillment
- Mar 23, 2021
I hope you have the most recent version of Excel. I use the recently introduced function UNIQUE in this version. Use it twice, first to produce a summary of the dollars of each customer's order; second to produce a list of the products involved in all the orders, from that the total product quantity, and from that the total number of "growing trays" needed.
I added three columns (by the way, you have used the word "column" where the real word is "row" ...a vertical array of cells is a column, a horizontal array is a row)...I added three columns just to make clear the progression. I'm sure it'd be possible to consolidate all those into a single formula, but that kind of "behind the scenes magic" isn't clear to you, the user. This is therefore more maintainable by you.
Let me know if this works.
I hope you have the most recent version of Excel. I use the recently introduced function UNIQUE in this version. Use it twice, first to produce a summary of the dollars of each customer's order; second to produce a list of the products involved in all the orders, from that the total product quantity, and from that the total number of "growing trays" needed.
I added three columns (by the way, you have used the word "column" where the real word is "row" ...a vertical array of cells is a column, a horizontal array is a row)...I added three columns just to make clear the progression. I'm sure it'd be possible to consolidate all those into a single formula, but that kind of "behind the scenes magic" isn't clear to you, the user. This is therefore more maintainable by you.
Let me know if this works.
I thank you very much for taking the time to help me solve this.
cheers
- mathetesMar 23, 2021Gold Contributor
Good, I'm glad it worked for you. It was fun to do.
I just went back and looked at that LET formula and realized in looking closer that it does nothing of value. This simpler formula does the exact same thing.=IFERROR(VLOOKUP(R6,CropData,2,0),"")
So switch it out.
LET is fun to use, but I got carried away. It only would have made sense had I needed the VLOOKUP to happen several times.