formula - google sheet Networkday.intl -


i looking number of working days deducting holidays , weekends. i'm using formula right now.

 =networkdays.intl(e2,f2,1,holidays!a1:a19) 

putting list of holidays on sheet. worked on first cell,i enter formula. numbers on holidays range keeps on increasing, when copy , paste next cell.

 =networkdays.intl(e3,f3,1,holidays!a2:a20) 

this 2nd cell , 3rd cell,

 =networkdays.intl(e4,f4,1,holidays!a3:a21) 

i ask if there can do, when pasting formula on each cell without moving holiday range. tried entering formula 1 one , worked. but, looking easier way future use. lot in advance.

to lock range use $

  =networkdays.intl(e2,f2,1,holidays!a$1:a$19) 

this lock rows. if drag fill down or copy paste down 1 , 19 won't change. if drag fill right,a become b , on. make full lock, use $ on both columns , rows.

 =networkdays.intl(e2,f2,1,holidays!$a$1:$a$19) 

Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -