get2work
Technical User
- Jan 3, 2002
- 6
Created a formula named "short descrip" as
Left ({PACKAGE.PACK_DESC},9) in the row section of the crosstab. The purpose was to combine like product names based on the first 9 characters. The summarized field is count(MAP.PIN_NUM). The product names are grouping as desired, but the pin count is not combining totals for each combined product name group. Instead, only the pin count for the first row is displayed.
Example: without using left(field,9)
Product A - 50 cards 100 pins
Product A - 60 cards 200 pins
Product B - 50 cards 600 pins
Example: using left(field,9)
Product A 100 pins
Product B 600 pins
Product A should have totaled 300 pins.
Is there such a thing as sum(count(MAP.PIN_NUM)) in a crosstab?
Left ({PACKAGE.PACK_DESC},9) in the row section of the crosstab. The purpose was to combine like product names based on the first 9 characters. The summarized field is count(MAP.PIN_NUM). The product names are grouping as desired, but the pin count is not combining totals for each combined product name group. Instead, only the pin count for the first row is displayed.
Example: without using left(field,9)
Product A - 50 cards 100 pins
Product A - 60 cards 200 pins
Product B - 50 cards 600 pins
Example: using left(field,9)
Product A 100 pins
Product B 600 pins
Product A should have totaled 300 pins.
Is there such a thing as sum(count(MAP.PIN_NUM)) in a crosstab?