excel - Issue with Arrays/Match/Index -
here current formula use pull latest live date customer out of web query.
{=large( if(table_owssvr_1[hq name]=b1,1,0)* if(isnumber(table_owssvr_1[live date]),table_owssvr_1[live date],0), 1)}
b1
name of customer. hq name
column a
, contains customer names.
this formula give me latest open date customer doesn't filter whether live, closed, or customer on hold. problem having need have formula check 1 more column in table see matches live -3
before giving me largest date. column c
in table status
. if data in column says live -3
customer, need pull largest date among multiple entries live -3
. dates in column l
, live date
.
i've been attempting using match , index function have had no luck. appreciate help.
this should simple multiplying in condition returns 1/0
. 0 unless both conditions met.
{=large( if(table_owssvr_1[hq name]=b1,1,0)* if(table_owssvr_1[status]="live -3",1,0)* if(isnumber(table_owssvr_1[live date]),table_owssvr_1[live date],0), 1)}
Comments
Post a Comment