Hello there,i want to groupBy 3 fields: ID,SA, sum(amount)ID | SA | Amount-------------------3 AD 23.453 AD 0.03 AD 5.75
and the result is ok:ID | SA | Amount-------------------3 AD 29.2
the problem is when the SA dont have equal data the result is:ID | SA | Amount-------------------3 AD 23.453 AD 0.03 AD 5.75
My Question is how to show blank '' in the field SA when the field dont have equal data so i can still group by ID,sum(amount)?:ID | SA | Amount-------------------3 29.2
Thanks.