DotNetGnat
Programmer
Guys, this is my original table:
i want the output as:
1. The series should be ordered
2. if there is break in the series, i want to get a NULL for
the length, AvgWidth and Area
Thanks
-DNG
Code:
Station1|Station2|Length|Width1|Width2|AvgWidth|Area
_________________________________________________________________
57.25 |57.50 |25.00 |20.00 |25.00 |22.50 |562.50
58.00 |58.63 |63.00 |17.00 |22.00 |19.50 |1228.50
189.90 |190.50 |60.00 |182.00|197.00|189.50 |11370.00
190.50 |190.97 |47.00 |197.00|187.00|192.00 |9024.00
57.50 |58.00 |50.00 |25.00 |17.00 |21.00 |1050.0
i want the output as:
Code:
Station|Length |Width |AvgWidth|Area
____________________________________________
57.25 |25.00 |20.00 |22.50 |562.50
57.50 |50.00 |25.00 |21.00 |1050.0
58.00 |63.00 |17.00 |19.50 |1228.5
58.63 |NULL |22.00 |NULL |NULL
189.90 |60.00 |182.00 |189.50 |1050.0
190.50 |47.00 |197.00 |192.00 |1050.0
190.97 |NULL |187.00 |NULL |NULL
1. The series should be ordered
2. if there is break in the series, i want to get a NULL for
the length, AvgWidth and Area
Thanks
-DNG