Excel - Pivot Table - Formula Sum a cell only if other cell fulfill an specific value -
i trying create pivot table on excel formulas. 1 of them should sum(montant emission) if off/online = 'offline'
for example if group code agent
, want sum(montant emission) if 'off/online' = 'offline'
in case sum code agent = cho
should 0
, code agent = jgr
should 137.5
i need create formula calculation. formula should use on "calculated field"
use
=sumif(i:i,"offline",e:e)
assuming off/online column, e column value want sum up.
you can make "offline" dynamic , refer cell.
Comments
Post a Comment