Hi everyone,
I have a large dataset stored in an Excel table, which includes many columns, but for my current query, I am focusing on the following sample structure:
I have extracted unique names in Column F using the following formula:
=UNIQUE(db[Name])
Now, I need to retrieve the corresponding sum of Amount for each Type (A & B) where FB is "Y" (Yes), structured as follows:
I have tried using SUMIFS, and while it works, my dataset is quite large, making the worksheet painfully slow.
I would also like to know if using a helper column could help reduce computations and improve performance.
Can someone suggest an efficient Excel formula to achieve this without slowing down performance?
I’d really appreciate your support and suggestions. Thanks in advance!
I have a large dataset stored in an Excel table, which includes many columns, but for my current query, I am focusing on the following sample structure:
Name | Type | FB | Amount |
---|---|---|---|
Sam | A | Y | 100 |
Sam | A | N | 50 |
Sam | B | Y | 200 |
Sam | B | Y | 10 |
Tom | A | N | 30 |
Tom | A | N | 50 |
Tom | B | Y | 75 |
Tom | B | N | 50 |
I have extracted unique names in Column F using the following formula:
=UNIQUE(db[Name])
Now, I need to retrieve the corresponding sum of Amount for each Type (A & B) where FB is "Y" (Yes), structured as follows:
Name | A | B |
---|---|---|
Sam | 100 | 210 |
Tom | 0 | 75 |
I have tried using SUMIFS, and while it works, my dataset is quite large, making the worksheet painfully slow.
I would also like to know if using a helper column could help reduce computations and improve performance.
Can someone suggest an efficient Excel formula to achieve this without slowing down performance?
I’d really appreciate your support and suggestions. Thanks in advance!