Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the following results (pivot table)
State A State B
Company A avg(DurationDays)
--
State A State B
Company A 5 4
Compnay B 3 12
Now they want to get a horizontal summary may be in seperate table
They Want Company A 9 days
Company B 15 days
tried things like aggr(avg(DurationDays),StateDescription) with the dimension company, but then i get null values
how to fix this ?
Use Company as dimension
Expression
Sum(Aggr(Avg(DurationDays), Company, State))
What do you want to do? Sum the averages or average the averages or something else?
If you want the sum of averages try something like this: Sum(aggr(avg(DurationDays),CompanyNameDimensionHere,StateDescription))
Hi,
If you are using a straight table then try :
sum(aggr(avg(DurationDays),Company))
Can you plz elaborate little more
Use Company as dimension
Expression
Sum(Aggr(Avg(DurationDays), Company, State))