I'm trying to pull data from one sheet into another sheet using formulas instead of cell-linking.
My source sheet has this column:
- Sheet One | Column: Projected Duration (days) - text/number column type. *populated by a formula
- Sheet One | Column: Project - text/number column type
The sheet I want to populate has
- On Sheet Two | Column: Projected Duration (days) - text/number column type
I have the following formula in Sheet Two | Column: Projected Duration (days):
=IFERROR(COLLECT({Projected Duration (days)}, {Project}, [Projected Duration (days)]@row), "UNK")
where
{Projected Duration (days)} range is the Sheet One | Column: Projected Duration (days)
{Project} criterion_range1 is the Sheet One | Column: Project
[Projected Duration (days)]@row is criterion1 is the Sheet Two | Column: [Projected Duration (days)]@row
I keep getting an #INVALID COLUMN VALUE error message. I think it is because I am not using COLLECT inside another FUNCTION but I don't know what other function to use - I want to pull data over based off the project, not compute something.
Any assistance would be appreciated.