Hi Everyone,I am taking Top 10 of Sales Volume grouped by Product categories in SSRS 2012. I need the total of these top 10 but it shows the complete total. For this I have used running value inside group and Written hidden expression below. This absolutely working for top 10 rows and rows less than 10.. In my report searching based on TaxID..So there may be chance of total sum ties..! so that case this condition is failingNote: This is condition working for top 10 rows and also rows less than 10...but only failing rows more than 10 rows means top sales ties.( If 10th and 11th category sales are same those are pulling up into report..but sum is making problem for me :(=IIf(RunningValue(Fields!grp.Value, CountDistinct, Nothing) = 10 or (RunningValue(Fields!grp.Value, CountDistinct, Nothing) = CountDistinct(Fields!grp.Value, "DataSet1") and CountDistinct(Fields!grp.Value, "DataSet1") < 10) , false , true)I cant do it on dataset level as I need the complete dataset for other parts in the report. Thanks in advance.any help on this..greatly appreciated ..
↧