I am trying to create a formula that will populate a non sequential set of cells in a column with data from another column that is sequential. I can't seem to figure out how to do it.
For example:
I have in one column that is a textual form of the date:
Column B
[TABLE="width: 130"]
<tbody>[TR]
[TD]August 31, 2016[/TD]
[/TR]
[TR]
[TD]September 1, 2016[/TD]
[/TR]
[TR]
[TD]September 2, 2016[/TD]
[/TR]
[TR]
[TD]September 3, 2016[/TD]
[/TR]
[TR]
[TD]September 4, 2016[/TD]
[/TR]
[TR]
[TD]September 5, 2016[/TD]
[/TR]
[TR]
[TD]September 6, 2016[/TD]
[/TR]
[TR]
[TD]September 7, 2016[/TD]
[/TR]
</tbody><colgroup><col></colgroup>[/TABLE]
This column's cells are calculated with the following equation =TEXT(A1,"mmmm d, yyyy")
Next, my first cell in the non-sequential column = the first cell in the sequential column (so = A1 in the example above).
The next cell in the non-sequential column must be evaluated based on the first cell in my non-sequential column as follows:
If previous non-sequential cell value is a Friday then this cell's value = B1+3 (or B2), else this cell's value = B1+1 (or B2).
Not sure if this is 100% clear, but basically trying to populate a form with dates based on a set of dates in a column but need to skip weekend dates.
Can anyone help?
Thanks!
For example:
I have in one column that is a textual form of the date:
Column B
[TABLE="width: 130"]
<tbody>[TR]
[TD]August 31, 2016[/TD]
[/TR]
[TR]
[TD]September 1, 2016[/TD]
[/TR]
[TR]
[TD]September 2, 2016[/TD]
[/TR]
[TR]
[TD]September 3, 2016[/TD]
[/TR]
[TR]
[TD]September 4, 2016[/TD]
[/TR]
[TR]
[TD]September 5, 2016[/TD]
[/TR]
[TR]
[TD]September 6, 2016[/TD]
[/TR]
[TR]
[TD]September 7, 2016[/TD]
[/TR]
</tbody><colgroup><col></colgroup>[/TABLE]
This column's cells are calculated with the following equation =TEXT(A1,"mmmm d, yyyy")
Next, my first cell in the non-sequential column = the first cell in the sequential column (so = A1 in the example above).
The next cell in the non-sequential column must be evaluated based on the first cell in my non-sequential column as follows:
If previous non-sequential cell value is a Friday then this cell's value = B1+3 (or B2), else this cell's value = B1+1 (or B2).
Not sure if this is 100% clear, but basically trying to populate a form with dates based on a set of dates in a column but need to skip weekend dates.
Can anyone help?
Thanks!