excel - IF(ISBLANK(V4),"",TODAY()-V4) for the Day Past Due -


i trying have weekly schedule keeps count of days past due , stops when days count surpass 90, every time day count exceeds 7 in given week, number moves 1 cell right , still tally until 90 days (13 weeks).

i have

if(isblank(v4),"",today()-v4)  

for day past due.

and weekly past due it’s

=if(isblank(v4)-today()<7,v4,""); =if(isblank(v4)-today()<14,v4,"")…    

can me?

in first cell put min in w4:

=if(v4<>"",min(today()-$v4,7),"") 

then in x4 put:

=if(w4=7,min((today()-$v4)-sum($w4:w4),if(column(b:b) = 13,6,7)),"") 

and copied on 12 columns

enter image description here


Comments

Popular posts from this blog

ios - MKAnnotationView layer is not of expected type: MKLayer -

ZeroMQ on Windows, with Qt Creator -

unity3d - Unity SceneManager.LoadScene quits application -