I have a field that has 8 numeric characters in it. I use a formula to remove the last four. I need to group those first four onto one line with the sum of all with those first four.
As an example you have
42000000 $10
42000001 $20
42000002 $30
42010000 $10
42010001 $20
42010002 $30
i am using this formulas to remove the last four
Left ({table.field}, 4)
i want on one row
4200 $60
4201 $60
and so on
As an example you have
42000000 $10
42000001 $20
42000002 $30
42010000 $10
42010001 $20
42010002 $30
i am using this formulas to remove the last four
Left ({table.field}, 4)
i want on one row
4200 $60
4201 $60
and so on