blueberrywaffle
New Member
- Joined
- Sep 18, 2015
- Messages
- 1
Hello,
In its basic form, I have a Text_Cell and then a separate Table consisting of numbers in Column1, text in Column2, and other columns of data which is why I am currently using a SUMIFS() function. What I want to do is sum the values of Column1 based off of multiple conditions in the following columns of data.
For one of these conditions, if the first three letters in the Text_Cell exactly match the first three letters in Column2 then I want it to output the value in Column1 into my sum equation. I have been using:
SUMIFS(Table[Column1], LEFT(Table[Column2],3), LEFT(Text_Cell,3)...other conditional clauses) but the SUMIFS function errors when I try to nest another function for its criteria range.
If I create a new column (lets call it Column3), perform a =LEFT(Table[Column2],3) and then use:
SUMIFS(Table[Column1], Table[Column3], LEFT(Text_Cell,3)...other conditional clauses) it works exactly how I want it to. However, I do not want to have to create additional tables for each referenced column as I am working with a number of sheet.
Is there an alternative method or better approach this issue?
Thanks so much for the help!!
In its basic form, I have a Text_Cell and then a separate Table consisting of numbers in Column1, text in Column2, and other columns of data which is why I am currently using a SUMIFS() function. What I want to do is sum the values of Column1 based off of multiple conditions in the following columns of data.
For one of these conditions, if the first three letters in the Text_Cell exactly match the first three letters in Column2 then I want it to output the value in Column1 into my sum equation. I have been using:
SUMIFS(Table[Column1], LEFT(Table[Column2],3), LEFT(Text_Cell,3)...other conditional clauses) but the SUMIFS function errors when I try to nest another function for its criteria range.
If I create a new column (lets call it Column3), perform a =LEFT(Table[Column2],3) and then use:
SUMIFS(Table[Column1], Table[Column3], LEFT(Text_Cell,3)...other conditional clauses) it works exactly how I want it to. However, I do not want to have to create additional tables for each referenced column as I am working with a number of sheet.
Is there an alternative method or better approach this issue?
Thanks so much for the help!!