nested - Excel Nesting IF in SumIfs -


ok. i'm looking nest if in sumifs formulas. problem i'm having when 1 of referenced cells show false, formula no longer works. how formula remove criteria sumifs formula , still work?

codes i've used.

=sumifs(r:r,if(be4=true,i:i),if(be4=true,bd4),j:j,bd5)  =if(be4=true,sumifs(r:r,i:i,bd4),0)+if(be5=true,sumifs(r:r,j:j,bd5),0) 

i've tried breaking sumifs formula multiple cells, , using if , indirect create working code. keeps popping #ref error.

here's code

=indirect(concatenate(bk1,if(be2=true,bk2,""),if(be3=true,bk3,""),if(be4=true,bk4,""),if(be5=true,bk5,""),bk6)) 

here's code didn't work before if.

=indirect(concatenate(bk1,bk2,bk3,bk4,bk5,bk6)) 

any appreciated. thank you

mock sheet https://www.dropbox.com/s/tl64vbsalcqxqdm/criteriaifs.xlsx?dl=0

try formula:

=sumifs(bk1:bk6,bk1:bk6,">=0") 

Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -