Hi everyone,
I have two main columns in my file that I want to use:
"F ID" - a column with IDs;
"S DP" - a column with either numerical values or "Not correct value" as text;
I have a function that does other things, which are un-related to my current question, on column "H" (progress until now). What I want to do is add to this function a range that finds the first occurrence of a numerical value on column "S DP", for each F ID, and stores it in the LET function for later use.
My current LET function:
=LET(NOT_CORRECT,"Not correct value",
count_ROWS,ROWS('DP & PAC'!$B$2:$B$7424)+2,
table_RANGE_YEAR,C2:INDEX(C:C,count_ROWS),
table_RANGE_SUBMITTED_DP,D2:INDEX(D:D,count_ROWS),
table_RANGE_INVESTMENT,F2:INDEX(F:F,count_ROWS),
table_RANGE_FUNDRAISING,E2:INDEX(E:E,count_ROWS),
table_RANGE_FundID,B2:INDEX(B:B,count_ROWS),
MIN_YEAR,MIN(table_RANGE_YEAR),
MAX_YEAR,MAX(table_RANGE_YEAR),
table_RANGE_OFFSET_INVESTMENT,OFFSET(table_RANGE_INVESTMENT,1,0),
table_RANGE_OFFSET_FUNDRAISING,OFFSET(table_RANGE_FUNDRAISING,1,0),
table_RANGE_INV_AMT_INV_PER_YEAR, IF( table_RANGE_YEAR = MIN_YEAR, table_RANGE_INVESTMENT, (table_RANGE_INVESTMENT - table_RANGE_OFFSET_INVESTMENT)),
table_RANGE_FR_AMT_RAISED_PER_YEAR, IF( table_RANGE_YEAR = MIN_YEAR, table_RANGE_FUNDRAISING, (table_RANGE_FUNDRAISING - table_RANGE_OFFSET_FUNDRAISING)),
table_RANGE_FR_AMT_RAISED_PER_YEAR)
---------------------
Does someone know a solution for this? i've added a few end-results manually on the "manual input" column, with the desired outcome of the function.
Many thanks!!
S
Bookmarks