Hi folks!
I have a listbox in one of my forms with the following RowSource:
The output looks like this:
(navn1) (betalingsprocent1) (fradato1 is hidden)
June 0,50
August 0,30
August 0,30
August 0,30
In my query 'fsVisbetalingsprocent' the 'betalingsprocent' is allways the same when the month is the same. So I want the listbox to write the month (navn1) only once...
I've been trying hard for an hour or so, and I just can't get it to work!
Any suggestions???
// JR
I have a listbox in one of my forms with the following RowSource:
Code:
SELECT fsVisbetalingsprocent.navn1, fsVisbetalingsprocent.betalingsprocent1,
fsVisbetalingsprocent.fradato1 FROM fsVisbetalingsprocent WHERE
fsVisbetalingsprocent.sælgernr1=forms.vissælger.sælgernr ORDER BY
fsVisbetalingsprocent.fradato1;
The output looks like this:
(navn1) (betalingsprocent1) (fradato1 is hidden)
June 0,50
August 0,30
August 0,30
August 0,30
In my query 'fsVisbetalingsprocent' the 'betalingsprocent' is allways the same when the month is the same. So I want the listbox to write the month (navn1) only once...
I've been trying hard for an hour or so, and I just can't get it to work!
Any suggestions???
// JR