Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have two column in same table like,TEAM_A and TEAM_B.I have joined in these two columns into one column as TOTAL_TEAM and COUNTRIES.Now i want to remove the selected value of COUNTRIES in TOTAL_TEAM column.For Example if i click 'india' in COUNTRIES,it should be only show the five counties name from TOTAL_TEAM with out the value of 'india',because india played only 5 match,Based on the Match_ID.
May be use calculated expression for your list box for TOTAL_TEAM
Aggr(If(GetSelectedCount(COUNTRIES) = 0, Only({1} TOTAL_TEAM), Only{1<TOTAL_TEAM = e(COUNTRIES)>} TOTAL_TEAM), TOTAL_TEAM)
May be use calculated expression for your list box for TOTAL_TEAM
Aggr(If(GetSelectedCount(COUNTRIES) = 0, Only({1} TOTAL_TEAM), Only{1<TOTAL_TEAM = e(COUNTRIES)>} TOTAL_TEAM), TOTAL_TEAM)
Thanks for reply Sunny T, I got some error in this Expression like below,
Does it not work when you click ok?
Thanks Sunny Now it's work.Is it possible for load script?
Isn't this based on selection? Are you planning to reload data after making selection in Country field?
I have planned to use this Total_Team field into chart objects.How to use this column in Dimension Field. Aggr function is not convenience to Calculated Dimension.
You should incorporate the same logic in set analysis of your expression instead of using a calculated dimension.... something along these lines I guess
If(GetSelectedCount(COUNTRIES) = 0, Sum(Measure), Sum{<TOTAL_TEAM = e(COUNTRIES)>} Measure))
With TOTAL_TEAM as your dimension
The result of the TOTAL_TEAM field may having a duplicate record. Aggregator function can remove the duplicates rows in chart objects due to associate with other dimensions.can you have anything else for this?
Do you have a sample you can share?