[QUOTE=jsbinca;21095]Well, that’s what grouping does.
You probably need an ORDER BY. Substitute the GROUP BY clause by an ORDER BY clause.
See if this is closer to what you want.[/QUOTE]
Got it:
I did some manipulation like that:
In SQL:
SELECT
customer,
date
,
weekday(date) as week_day,
time
,
comment
FROM
tableofdata
Then got week_day as a field and did a grouping on week_day then time.
Now I have by Grid display like that:
Week Day => 3
0830
Customer1
Customer7
1100
Customer6
Week Day => 6
1000
Customer207
Customer103
Customer92
1500
Customer8
Now what do I need to do to replace the 3 by Thursday. Where do I put the code, select case?
Thanks for reply.