HighAndWilder
Well-known Member
- Joined
- Nov 4, 2006
- Messages
- 1,004
- Office Version
- 365
- Platform
- Windows
Given that I have a sequence of values, times in this case, I'd like to produce what is in column F and G as a sequence from F2 to F16 and G2 to G16.
I don't want to have to work out where the formula needs to be placed (F4 and G4).
In this scenario there are two criteria (>=01:03:00 and <=01:16:00 ) but I want to be able to enhance such a formula to include multiple criteria.
The 'Value Here' value could be the result of another formula or hard coded.
How could I do this?
Thanks.
I don't want to have to work out where the formula needs to be placed (F4 and G4).
In this scenario there are two criteria (>=01:03:00 and <=01:16:00 ) but I want to be able to enhance such a formula to include multiple criteria.
The 'Value Here' value could be the result of another formula or hard coded.
How could I do this?
Thanks.
REGEXEXTRACT.xlsm | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | |||
1 | ||||||||||
2 | 01:03:00 | 01:16:00 | 01:00:00 | |||||||
3 | 01:02:00 | |||||||||
4 | 01:04:00 | 01:04:00 | Value Here | |||||||
5 | 01:06:00 | 01:06:00 | Value Here | |||||||
6 | 01:08:00 | 01:08:00 | Value Here | |||||||
7 | 01:10:00 | 01:10:00 | Value Here | |||||||
8 | 01:12:00 | 01:12:00 | Value Here | |||||||
9 | 01:14:00 | 01:14:00 | Value Here | |||||||
10 | 01:16:00 | 01:16:00 | Value Here | |||||||
11 | 01:18:00 | |||||||||
12 | 01:20:00 | |||||||||
13 | 01:22:00 | |||||||||
14 | 01:24:00 | |||||||||
15 | 01:26:00 | |||||||||
16 | 01:28:00 | |||||||||
17 | ||||||||||
18 | ||||||||||
Sheet6 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E2:E16 | E2 | =SEQUENCE(15,1,TIME(1,0,0),1/720) |
Dynamic array formulas. |