I've got a table that shows count of claims by UK area. There are 127 UK areas, but I only want the table to only show the top 10 areas by highest count. Is there a way to do this? I've tried a set statement in the calculated dimention as follows:
This almost does the job, but all the areas that are not in the top 10 are grouped together and shown on the table, whereas I only want to see the top 10.
'************************************************************* '* Top 10 '************************************************************* sub Top10 set f = ActiveDocument.GetField ("Company") f.TopSelect "Sum (Amount)", 10 end sub