Hi all,
Is there anywhere in the database where I can find these 2 values?

Hi all,
Is there anywhere in the database where I can find these 2 values?

Best answer by Tomas Ruderfelt
Aha, you need to se the parameters the user entered.
Here is another SQL you can use:
SELECT MIN(origin_pack_size) pack_size,
COUNT(DISTINCT barcode_id) number_of_labels,
COUNT(*) / COUNT(DISTINCT barcode_id) number_of_copies
FROM inventory_part_barcode_rep
WHERE result_key = 15503Since the pack size is same on all lines in the report you can use min or max to get one of them.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.