Custom Validation Formula

Mbourque94

New Member
Joined
Jun 11, 2017
Messages
7
I need to create a custom formula for a validation test with the requirement being 4 digits and a value within the range of 1000 and 6900. This could be simply accomplished by using whole number range and specifying the values, as it would be impossible to have an entry that was not 4 digits using whole numbers only. The requirements however specifically require a custom formula, which I have been trying and failing with for the past hour and a half. PLEASE HELP!!
 
I just tried both of them. They allow me to enter "999" which should prompt an error message if the rule was operating. Since I am using the cell range of J19:J23 I tried modifying the formula to =AND(J19:J23>=1000,J19:J23<=6900,LEN(J19:J23)=4 but I must have made a mistake because it will not accept the formula.

You need to highlight the range you want to apply the DV too, 1st, then use this...
=AND(J19>=1000,J19<=6900,LEN(J19)=4)
use a single-cell ref, not a range
 
Upvote 0

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
I just tried both of them. They allow me to enter "999" which should prompt an error message if the rule was operating. Since I am using the cell range of J19:J23 I tried modifying the formula to =AND(J19:J23>=1000,J19:J23<=6900,LEN(J19:J23)=4 but I must have made a mistake because it will not accept the formula.

If the entries must be whole numbers...

1. Select J19.
2. Acivate Data | Data Validation.
3. Choose Custom.
4. Enter the formula:

=AND(A1>=1000,A1<=6900,A1=TRUNC(A1))
Do the same for each cell of interest.
 
Upvote 0
I must have applied something incorrectly, I just cant figure out where the error is. I keep trying to modify the formula and test, but it either does not accept the formula or will accept any data entry/ deny all entries.
 
Upvote 0
Okay so this made good progress. I did exactly what you said above using =AND(J19>=1000,J19<=6900,LEN(J19)=4), but it will deny 6999. If I enter 6900 it will work, but 6950, 6990, and other variations above 6900 all fail.
 
Upvote 0
Okay so this made good progress. I did exactly what you said above using =AND(J19>=1000,J19<=6900,LEN(J19)=4), but it will deny 6999. If I enter 6900 it will work, but 6950, 6990, and other variations above 6900 all fail.

Reading the formula back to myself i realized that it contained a max of 6900 and that was the issue. Now it works! Thank you so much!
 
Upvote 0
Okay so this made good progress. I did exactly what you said above using =AND(J19>=1000,J19<=6900,LEN(J19)=4), but it will deny 6999. If I enter 6900 it will work, but 6950, 6990, and other variations above 6900 all fail.

Your requirement - IF I read it correctly, was
within the range of 1000 and 6900
anything outside that will fail. If you need to include a higher value, adjust the >=6900 as needed
 
Upvote 0

Forum statistics

Threads
1,215,507
Messages
6,125,201
Members
449,214
Latest member
mr_ordinaryboy

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