I have what I think should be a relatively straightforward problem, but I haven't had any luck solving it myself
:
I have data from a DAC card which comes out every half second onto sheet "d". The data has a seconds column (from time of acquisition beginning) and directly next to it a "User Comment" column (C) which allows the user to input comments about the data being collected. So the comments (which come out every few minutes) are quite sparse; some 30 total entries in 16000 rows. What I'd like to do is to use a separate sheet to pull the row number in which each is located, the time it happened (column B), and the comment itself into separate columns. So far, I've gotten it to find the first row with a
=INDEX(d!C$3:C$16000,MATCH(TRUE,LEN(d!C$3:C$16000)<>0,0),1)
and some commands taken from that. But it doesn't seem to want to continue past the first match it gets. Help is most appreciated!
Thanks,
Will Fischer
I have data from a DAC card which comes out every half second onto sheet "d". The data has a seconds column (from time of acquisition beginning) and directly next to it a "User Comment" column (C) which allows the user to input comments about the data being collected. So the comments (which come out every few minutes) are quite sparse; some 30 total entries in 16000 rows. What I'd like to do is to use a separate sheet to pull the row number in which each is located, the time it happened (column B), and the comment itself into separate columns. So far, I've gotten it to find the first row with a
=INDEX(d!C$3:C$16000,MATCH(TRUE,LEN(d!C$3:C$16000)<>0,0),1)
and some commands taken from that. But it doesn't seem to want to continue past the first match it gets. Help is most appreciated!
Thanks,
Will Fischer