handlebarry
Technical User
Hi,
I have a report that lists properties in Blocks. I have set up a group header that seperates each block. In the header is a list box that is supposed to show the number of properties in each block. Currently I have the below as the list box source:
SELECT Count([1].Block_Code) AS CountOfBlock_Code
FROM 1
GROUP BY [1].Block_Code;
1 is a query that limits the number of blocks.
running this above query gives me the required list, eg:
12
10
11
However the list box only shows the first record (e.g. 12) in each of the groups
Can anyone point me in the right direction please
I have a report that lists properties in Blocks. I have set up a group header that seperates each block. In the header is a list box that is supposed to show the number of properties in each block. Currently I have the below as the list box source:
SELECT Count([1].Block_Code) AS CountOfBlock_Code
FROM 1
GROUP BY [1].Block_Code;
1 is a query that limits the number of blocks.
running this above query gives me the required list, eg:
12
10
11
However the list box only shows the first record (e.g. 12) in each of the groups
Can anyone point me in the right direction please