excel - Using trim function on table references -
i'm attempting aggregate imported data source in excel. have 2 combo boxes specify conditions sumifs function (selected using offsets).
where struggle data doesn't seem match unless use trim function (i tested on adding column data table).
the following formula returns 0
=sumifs(table_externaldata_1[redflag],table_externaldata_1[ragstatus],"=trim("&reconaggregation!$a4&")",table_externaldata_1[clientdescription],"=trim("&offset(lists!$a$1,lists!$b$1,0)&")", table_externaldata_1[agencydescription],"=trim("&offset(lists!$c$1,lists!$d$1,0)&")")
when add trims
=sumifs(table_externaldata_1[redflag],trim(table_externaldata_1[ragstatus]),"=trim("&reconaggregation!$a4&")",trim(table_externaldata_1[clientdescription]),"=trim("&offset(lists!$a$1,lists!$b$1,0)&")", trim(table_externaldata_1[agencydescription]),"=trim("&offset(lists!$c$1,lists!$d$1,0)&")")
it tells me have formula error. idea why? there better way this?
cheers,
g
it tells me have formula error
maybe there's problem "
=sumifs(table_externaldata_1[redflag],trim(table_externaldata_1[ragstatus]),"=trim('&reconaggregation!$a4&')",trim(table_externaldata_1[clientdescription]),"=trim('&offset(lists!$a$1,lists!$b$1,0)&')", trim(table_externaldata_1[agencydescription]),"=trim('&offset(lists!$c$1,lists!$d$1,0)&')")
Comments
Post a Comment