G
Guest
Guest
I have two files. file1 has all of my data (like a database) and file2 extracts and displays significant data from file1.
In the second file(file2) I am trying to write a CSE(Array Formula) which will print values into column A.
It should:
Look at all the values in file1!B2:B200
If the value in a row of the file1!B column is "high" then it should print the exact text of the corresponding row of the file1!E column into the next available slot in the A column of file2.
Example:
file1 contains the following data:
so . . . file2 should contain the following:
Thanks.
In the second file(file2) I am trying to write a CSE(Array Formula) which will print values into column A.
It should:
Look at all the values in file1!B2:B200
If the value in a row of the file1!B column is "high" then it should print the exact text of the corresponding row of the file1!E column into the next available slot in the A column of file2.
Example:
file1 contains the following data:
. | A | B | C | D | E |
1 | ... | low | ... | ... | apples |
1 | ... | high | ... | ... | oranges |
1 | ... | low | ... | ... | pears |
1 | ... | high | ... | ... | grapes |
so . . . file2 should contain the following:
. | A | B | C | D | E |
1 | oranges | ... | ... | ... | ... |
1 | grapes | ... | ... | ... | ... |
Thanks.
Last edited by a moderator: