Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have table A
Department Income Type
Comp 100 A
IT 200 A
Mech 300 B
Prod 200 C
EnTC 100 B
and I want to show total of Income per type in another table B
Type Total
A 300
B 400
C 200
So how can I show conditional sum of field from one table in another table
Try creating a dimension like:
=aggr(sum([Income]),[Type])
And create a new table with this new created dimension and [Type] field
Try creating a dimension like:
=aggr(sum([Income]),[Type])
And create a new table with this new created dimension and [Type] field
Hi
In Script:
A: load Your Table
B:
load Sum(Income) as TotalIncome,Type
Resident A
group by Type;
In Chart:
Dimension : Type
Expression : Sum(Income)
=sum(distinct aggr(nodistinct sum([Income]),[Type])))