Why do you need the empty lines?I want to modify the sorting in the attached report.
When grouping is applied, empty rows appear at the top.
I would like this to be adjusted so they display correctly.
Thanks
Help us understand the request by specifying the sort order you want to apply.I want to modify the sorting in the attached report.
When grouping is applied, empty rows appear at the top.
I would like this to be adjusted so they display correctly.
Thanks
I think the goal is to create 26 lines on the report per group, regardless of how many records are in each group.Why do you need the empty lines?
I Imported the database into a new database and then applied Descending OrderI want to modify the sorting in the attached report.
When grouping is applied, empty rows appear at the top.
I would like this to be adjusted so they display correctly.
Thanks
Hi GeorgeI think the goal is to create 26 lines on the report per group, regardless of how many records are in each group.
I'm partly guessing based on the use of the const in the VBA and the presence of the talley table. I've been wrong before, though.Hi George
Ithink that is beyond my knowledge, but would appear pointless to me.
My thoughts as well.I think the goal is to create 26 lines on the report per group, regardless of how many records are in each group.
SELECT YourTable.ID, YourTable.OrderNumber, YourTable.StopNumber, YourTable.CustomerName, YourTable.PONumber, YourTable.ItemNumber, YourTable.ModelNumber
FROM YourTable;
I have that all the time.your record source is a table name with no field names.
SELECT *
FROM Yourtable
UNION
SELECT A, B, C, D
FROM Yourtable
SELECT yourTable.*
FROM yourTable
UNION
SELECT Null, Null, Null, Null, Null, Null,Null
FROM YourTable;