Check boxes in Searches (1 Viewer)

StuartG

Registered User.
Local time
Today, 19:47
Joined
Sep 12, 2018
Messages
125
Hi all,
Hoping you might be able to help as I've hit a stumbling block.

I have created a query on my DB and a user has reported that they are no longer able to select unselect all and then select a particular field.

Picture here shows what the user wants.
1603982133615.png


instead they are presented with the below and unable to select multiple.

1603982221645.png


This used to work fine but just randomly out the blue it no longer shows.

Can you advise how i can fix this without causing too much damage to my DB data.

Thanks all

Stuart
 

theDBguy

I’m here to help
Staff member
Local time
Today, 11:47
Joined
Oct 29, 2018
Messages
21,491
Hi Stuart. How many records are we talking about?
 

StuartG

Registered User.
Local time
Today, 19:47
Joined
Sep 12, 2018
Messages
125
Hi Stuart. How many records are we talking about?
Hi DBguy
There are over 1800 records in this DB now..
Could this be the reason?
 

theDBguy

I’m here to help
Staff member
Local time
Today, 11:47
Joined
Oct 29, 2018
Messages
21,491
Hi DBguy
There are over 1800 records in this DB now..
Could this be the reason?
Maybe, not sure. Try adding a criteria to the query to reduce the data set and see if the dropdown comes back.
 

StuartG

Registered User.
Local time
Today, 19:47
Joined
Sep 12, 2018
Messages
125
Maybe, not sure. Try adding a criteria to the query to reduce the data set and see if the dropdown comes back.
Do you know why it would return nothing using the below criteria?
The table column is a date/time.

1603983500509.png


I'd like for it to show a years worth as the team on a daily basis should not need to go further than that.
 

theDBguy

I’m here to help
Staff member
Local time
Today, 11:47
Joined
Oct 29, 2018
Messages
21,491
Do you know why it would return nothing using the below criteria?
The table column is a date/time.

View attachment 86205

I'd like for it to show a years worth as the team on a daily basis should not need to go further than that.
Not sure without seeing it. Try adding a criteria elsewhere. We're just testing at this point...
 

StuartG

Registered User.
Local time
Today, 19:47
Joined
Sep 12, 2018
Messages
125
Not sure without seeing it. Try adding a criteria elsewhere. We're just testing at this point...
OK, so i used the following criteria.

Between Date() and Date()-6

This then only showed 13 records and then i was able to deselect and select different fields.
Now i just need to get the query to work to show the year it is and that's all
 

theDBguy

I’m here to help
Staff member
Local time
Today, 11:47
Joined
Oct 29, 2018
Messages
21,491
OK, so i used the following criteria.

Between Date() and Date()-6

This then only showed 13 records and then i was able to deselect and select different fields.
Now i just need to get the query to work to show the year it is and that's all
Try using something like:
Code:
Between DateAdd("yyyy", -1, Date()) And Date()
 

MajP

You've got your good things, and you've got mine.
Local time
Today, 14:47
Joined
May 21, 2018
Messages
8,554
It definitely is dependent on the amount of discrete records
I selected the Top 1000 and got the checkboxes. Then selected Top 1200 and did not. I do not believe 1K is the limit but dependant on other factors.
 

StuartG

Registered User.
Local time
Today, 19:47
Joined
Sep 12, 2018
Messages
125
It definitely is dependent on the amount of discrete records
I selected the Top 1000 and got the checkboxes. Then selected Top 1200 and did not. I do not believe 1K is the limit but dependant on other factors.
What criteria did you use to show the top 1000?
 

theDBguy

I’m here to help
Staff member
Local time
Today, 11:47
Joined
Oct 29, 2018
Messages
21,491
That worked perfectly.
shows the whole year and the checkboxes are there.
Congratulations! Glad to hear you got it sorted out. Good luck with your project.
 

MajP

You've got your good things, and you've got mine.
Local time
Today, 14:47
Joined
May 21, 2018
Messages
8,554
To see this. There are two queries. One returns top 1K the other returns top 1.1k. Only get checks at 1K so maybe that is some kind of limit.
 

Attachments

  • DemoChecks.accdb
    944 KB · Views: 111

MajP

You've got your good things, and you've got mine.
Local time
Today, 14:47
Joined
May 21, 2018
Messages
8,554
Maybe 1000 is really the limit. Seems like a strange number would think 1024. But I just did 1000 and it works and 1001 and it did not. Strange.
 

Users who are viewing this thread

Top Bottom