Thread: [Solved] Complex formula question
View Single Post
 
Old 10-20-2014, 10:23 AM
gebobs gebobs is offline Windows 7 64bit Office 2010 64bit
Expert
 
Join Date: Mar 2014
Location: Atlanta
Posts: 837
gebobs has a spectacular aura aboutgebobs has a spectacular aura about
Default

Is Column A a general categorization of each record indicating how long is allotted for completion? i.e. Critical gets until Start + 15, Severe gets Start + 30? Is that right?

If so, that doesn't seem so complex. However, I am not clear on your "bigger monkey wrench". You indicate wen you want something to happen (i.e. when not past due), but not what you want to do. Do you want these to remain blank or something else?

I've worked one up but I can't seem to attach anything right now. But basically, what I did was:

Make a table (I named it "Levels") on a separate tab for the lookup values for the levels
Level Due
Critical 15
Severe 30
High 45

For the main table, I have three columns: Level, Start, Days Past. The equation for Days past in Row B is:

=IF(TODAY()-B2-VLOOKUP(A2,Level,2,FALSE)>0,TODAY()-B2-VLOOKUP(A2,Level,2,FALSE),"")
Reply With Quote