Limit text inputs

EAATC

New Member
Joined
Oct 16, 2017
Messages
3
I am trying to create a sign up sheet that has timeslots throughout the day. There are 46 available slots however I can only have 25 people sign up per day. Is there a way to create some formula to prevent a 26th person from signing up?

Times are in column A (6-51) text is in B,C, D for day 1: E, F, G for day 2: H, I, J for day 3.

abcdefghIj
4
5TitleLastFirstTitleLastFirstTitleLastFirst
68:30
78:40
88:50
99:00
109:10
119:20
129:30
139:40

<tbody>
</tbody>

I cannot have it as a macro. I appreciate any assistance.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
so 8:30 till 16:00 is the time

you can use data validation

As everyone should enter a last name
column C
then in C you could use a
data validation
custom
and use the formula

=counta($C$6:$C$51)<27
 
Upvote 0
I was thinking the same thing, except adjust the $ a bit, so it can be copied over for the other days
=counta(C$6:C$51)<26
 
Upvote 0
good point FDibbins
and the value , as 26 cannot be added , rather than 26 people , which i have used < 27 rather than the correct < 26
thanks
 
Upvote 0
yes i noticed that and for some reason when I saw
to prevent a 26th person from signing up?

i read as 26 people , rather than the correct 25
 
Upvote 0
so 8:30 till 16:00 is the time

you can use data validation

As everyone should enter a last name
column C
then in C you could use a
data validation
custom
and use the formula

=counta($C$6:$C$51)<27

This worked perfectly. thanks for the prompt assistance. I did use the <26 as later suggested.
 
Upvote 0

Forum statistics

Threads
1,214,891
Messages
6,122,101
Members
449,066
Latest member
Andyg666

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top