excel - How to vlookup on 2 columns and return total value of another? -


i've got table in excel structure so:

month    date        time    id         name    currency    value jan      07/01/14    5       1234567    ted     gbp         500 jan      10/01/14    12      1234567    ted     gbp         723 feb      23/02/14    6       9877654    john    gbp         300 feb      10/02/14    10      1234567    ted     gbp         333 

what need write formula returns total of value id , month equal whatever lookup values are. example, using above say:

find total of value month equals jan , id equals 1234567.

the answer in case 1223.

ive tried

=sumifs(input!h:h,input!d:d='trans mid'!b2,input!a:a='trans mid'!c1) 

input!h:h id column

input!d:d='trans mid'!b2 id want use

input!a:a month column

trans mid'!c1 jan

to provide working solution simplified question 1 sheet. data appears this:

enter image description here

you can link other sheet values shown in column j.

the formula this:

=sumifs(g:g,d:d,j1,a:a,j2) 

the result shown in j7:

enter image description here


Comments

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -