In my reports a group tree is not a desirable nor needed feature. It can eliminated if the report is opened in CR9 which creates some dialog because of an earlier version. But under 'Report Options' there is a check box to 'Create Group Tree'. But all that does is eliminate the data in the group tree. More dialog when VS2005 is updated. Must be a spot in vs2005 but I can't find it. Only stuff I see are showgrouptree and showgrouptreebutton = t/f
Secondly, in my reports I use a concantenation for city, state and zip like:
There is a random size gap between State and Zip even if this is used
Some records have the correct spacing.
Any ideas would be great.
Thanks
Secondly, in my reports I use a concantenation for city, state and zip like:
Code:
SELECT RestName, Address, IIF(City<>'',City & ', ' & State & ' ' & Zip) AS CityStZip, Phone, State
FROM Restaurants ORDER BY State, City, RestName
There is a random size gap between State and Zip even if this is used
Code:
IIF(City<>'',Trim(City & ', ' & State & ' ' & Zip)) AS CityStZip
Any ideas would be great.
Thanks