Discussions
Combining 2 Formulas
Can you combine 2 formulas fields of different types?
This is how the data looks now from the saved search.
Using these formulas:
Formula (Currency), Sum, decode({customer.category}, 'CAT1',{amount},'')
Formula (Numeric), Count, decode({customer.category}, 'CATl',{amount},'')
Formula (Currency), Sum, decode({customer.category}, 'CAT2',{amount},'')
Formula (Numeric), Count, decode({customer.category}, 'CAT2',{amount},'')
CITY.....PROV.....CAT1 SUM.....CAT1 COUNT.....CAT2 SUM.....CAT2 COUNT
CITY1....BC.......1000.00......11.............2000.00......25........
CITY2....AB.......1520.00......19.............1000.00.......3........
Now I want to combine CAT1 SUM with CAT1 Count
to save space and make it eaiser to read:
CITY.....PROV.....CAT1.............CAT2
CITY1....BC.......1000.00.(11).....2000.00.(25)