Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi fellas,
i have a problem to discuss, so when i tried to disctinct a field which is [total so no]
the left one is im using Count(DISTINCT([Total SO No]))
and on the right one also same , im using Count(DISTINCT([Total SO No]))
but there is a difference in total,
how to get same total amount? btw ,im using same formula.
thanks
Hi, You can change type of total calculation in straight table:
Regular Sum (add every row toghether):
expression total (calculate expression for total dimensions):
Hi,
You have a dimension in your chart on left. So in your text box, try with :
=sum(aggr(sum(distinct([Total So No]),Dimension))
Sorry, i forgot a (
=sum(aggr(sum(distinct([Total So No])),Dimension))
sorry mate, i wrote wrong codes,
Count(DISTINCT([Total SO No]))
i wanted to get total count of row from [Total so no]
So, try
=sum(aggr(count(distinct([Total So No])),Dimension))
i use this & ' Total Invoice = '&Count(aggr(DISTINCT([Total SO No]),[Total SO No])) it still same
i dont using sum because i only want to count
anyone help please??
Hi, You can change type of total calculation in straight table:
Regular Sum (add every row toghether):
expression total (calculate expression for total dimensions):
Hi
I have you enabled the suppress null values in the chart ? if yes then un-check the same and compare your counts with the text box numbers it should match because text box considers null values in the dimension by default and in the chart you could eliminate it using suppress nulls
this one really helps !!!
thank you so much mate !!