Forum Discussion
None None
Feb 08, 2018Copper Contributor
Returning a text value from an array
I have an array. and want to search a specific column for a value greater than 0 in the array. if i find a value greater than 0 i want to return the text entered in a different column of the array. See below for a picture.
i want to search column labeled 1 and any cell with a value greater then 0 will then return the text from the cell next to in from the column titled "category"
for example i search Column labeled 1 and find cell with "3" in it. cell with Adhesive Issues will be copied and returned to another cell. Also column with a 1 will return "did not cool" etc.
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | ||
Category | Number of reports | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug |
Adhesive Issues | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | |
Belt Issues | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Broken Cradle | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Broken Roller Ball | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Broken Seal | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Broken Sprayer | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Burning Effect-Not a Claim (BeKoool & OTC Only) | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Color Bled | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Contents Leaking | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Damaged Property | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Did Not Cool | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | |
Difficult to Open | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Dried Out | 0 | 2 | 1 | 0 | 0 | 1 | 0 | 0 | |
Ineffective (Medical Device & OTC Only) | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | |
Injury | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | |
Low Duration | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Hi,
It could be like
=IFNA(INDEX(<category column>, MATCH(<number>,<label column>,0)),"")
- None NoneCopper Contributor
Thank you
That did not work for what I wanted it to do
If you attach your sample as Excel file we could give you concrete formula for that