CR XI (11.5.11.1470)
SQL Server 2008
I'm having a problem getting the exact result I'm looking for and could use some help.
I have 5 fields:
CSize, Serial, WO, RefT, Lbs
I have two types of records that are being displayed currently:
Cyl record and a Ref Record
This is the current output:
[tt]CSize Serial WO RefT Lbs[/tt]
[tt]3/5 100001 238T 1[/tt]
[tt]R-99 238T R-99 Desc 16[/tt]
I would like it to look like this:
[tt]CSize Serial WO RefT Lbs[/tt]
[tt]3/5 100001 238T R-99 Desc 16[/tt]
I was able to get the empty RefT field to display the value of the next record by using this formula and putting it in the RefT column in the details section:
That gives me this output:
[tt]CSize Serial WO RefT Lbs[/tt]
[tt]3/5 100001 238T R-99 Desc 1[/tt]
[tt]R-99 238T 16[/tt]
I could do something similar for the Lbs column, but I'm stuck on how I would then get rid of the 2nd line displaying in my report. This one:
[tt]R-99 238T 16[/tt]
Can anyone help me out on this one? Thanks!
SQL Server 2008
I'm having a problem getting the exact result I'm looking for and could use some help.
I have 5 fields:
CSize, Serial, WO, RefT, Lbs
I have two types of records that are being displayed currently:
Cyl record and a Ref Record
This is the current output:
[tt]CSize Serial WO RefT Lbs[/tt]
[tt]3/5 100001 238T 1[/tt]
[tt]R-99 238T R-99 Desc 16[/tt]
I would like it to look like this:
[tt]CSize Serial WO RefT Lbs[/tt]
[tt]3/5 100001 238T R-99 Desc 16[/tt]
I was able to get the empty RefT field to display the value of the next record by using this formula and putting it in the RefT column in the details section:
Code:
if next({Command.ItemRef_FullName}) LIKE 'Dynam%' then next({Command.CSize})
That gives me this output:
[tt]CSize Serial WO RefT Lbs[/tt]
[tt]3/5 100001 238T R-99 Desc 1[/tt]
[tt]R-99 238T 16[/tt]
I could do something similar for the Lbs column, but I'm stuck on how I would then get rid of the 2nd line displaying in my report. This one:
[tt]R-99 238T 16[/tt]
Can anyone help me out on this one? Thanks!