I'm using Crystal X with a ProvideX database trying to write a monthly billing report. Currently grouped by invoice number with the following output:
I need to export this to Excel but need to copy the request number field down the column until the next request number. Generally I would do this manually in Excel but each invoice can contain up to 4K lines.
Below is what I'm trying to accomplish.
I've tried looping until I'm loopy! Any help is GREATLY appreciated!
Code:
Invoice# Request# Qty Service Amt
1001 76928
1001 5 BC Check 300
1001 3 Analysis 250
1001 1 Screening 125
1001 78972
1001 3 BC Test 83
1001 1 AD Test 24
1001 6 Rado 300
I need to export this to Excel but need to copy the request number field down the column until the next request number. Generally I would do this manually in Excel but each invoice can contain up to 4K lines.
Below is what I'm trying to accomplish.
Code:
Invoice# Request# Qty Service Amt
1001 76928
1001 76928 5 BC Check 300
1001 76928 3 Analysis 250
1001 76928 1 Screening 125
1001 78972
1001 78972 3 BC Test 83
1001 78972 1 AD Test 24
1001 78972 6 Rado 300
I've tried looping until I'm loopy! Any help is GREATLY appreciated!