• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Formula Help

shane_kidani

New Member
On the attached workbook, the 4th tab, I would like some help figuring out the following:

1. Columns T through W will return "1" or leave cell blank if conditions are met. -By the way, I have the condition formulas structured, albeit poorly.

2. Since the amount of rows of data will always change, be able to copy a formula into a completely separate workbook.

For example:
1. T2 would return "1" if the elapsed time in cell S2 is less than or equal to "6:00" AND the number in cell O2 is zero. I am trying to get the formula to be able to calculate through all cells with data in columns T though W, but as you can see there are many conditions and variables.

2. Let's say the attached workbook contains 1,000 rows, but the next report would contain 2,000. Is there a way (with the "$", perhaps) to have the formula be able to do such a thing?
 

Attachments

I would do the following

Q2: =K2-G2
R2: =AND($Q2>0,$Q2<=0.25)*1
S2: =AND($Q2>0.25,$Q2<=0.5)*1
T2: =AND($Q2>0.5,$Q2<=0.75)*1
U2: =AND($Q2>0.75,$Q2<=1.0)*1

Copy Q2:U2 down
 
Back
Top