excel - How do I sum up the value of a column where a given value exists in another column? -
each row in sheet represents transaction. 1 column (g) contains client name , column (h) contains gp exchange.
i'm trying make report in sheet references these cells gp info each of our clients.
the formula i'm trying accomplish this: sum gp (column h) every row containing [clientid] in column g
the clientid on column g , gp on column h
i make process automated each time transaction entered, client gp sheet automatically updated.
thanks.
only can closed out:
as per comments use sumif() function:
=sumif(g:g,[clientid],h:h)
Comments
Post a Comment