I have data imported from a text file to Excel. I then have created a formula in a column. I realize this may not be the correct way to determine the time frame but it seems to work everywhere but one cell and I don't see why I get the term FALSE instead of a 1 or 0. This is the formula for column one labeled prior 7-12 months:
=IF(NOW()-B2<365,IF(NOW()-B2>181,1,0))
The formula for the column labeled 4-6 months:
=IF(NOW()-B2<180,IF(NOW()-B2>91,1,0))
and the formula for the last column labeled current-3 months:
=IF(NOW()-B2<91,1,0)
The idea is in column B2 I have the sold date for my data. I need to know how many sales occurred for the different time periods. I have tried formatting the columns with the formulas as GENERAL and as NUMBER. I have also tried formatting the date column as GENERAL and as DATE (Mar-01) but I still have the one cell that gives me the formula result as FALSE. The corresponding B2 column for that one reads as Feb-08 or 39502 according to how it is formatted.
I bet it's something very simple, right?
=IF(NOW()-B2<365,IF(NOW()-B2>181,1,0))
The formula for the column labeled 4-6 months:
=IF(NOW()-B2<180,IF(NOW()-B2>91,1,0))
and the formula for the last column labeled current-3 months:
=IF(NOW()-B2<91,1,0)
The idea is in column B2 I have the sold date for my data. I need to know how many sales occurred for the different time periods. I have tried formatting the columns with the formulas as GENERAL and as NUMBER. I have also tried formatting the date column as GENERAL and as DATE (Mar-01) but I still have the one cell that gives me the formula result as FALSE. The corresponding B2 column for that one reads as Feb-08 or 39502 according to how it is formatted.
I bet it's something very simple, right?