Entering a number that is only a multiple of an adjacent cell

AmyA

New Member
Joined
Mar 15, 2023
Messages
3
Office Version
  1. 2007
Platform
  1. Windows
Hi Everyone,

I'm new here and very much a novice when it comes to Excel.

Trying to create an order form in Excel and in some instances, the customers are only allowed to order quantities that are a specific multiple. For instance, some products can only be ordered in multiple of five. While others can be ordered in multiples of 20. How could I create a formula in a particular cell which would 'read' the cell containing the order quantity multiple and only accept entries that actually correspond to that specific quantity? Say the multiple order quantity is five and someone enters a quantity of seven - I'd like some sort of message to appear stating that the entry is not a multiple of five. However, if the entry is indeed five or 20, or 85, or 210, etc, then no message would need to occur since the quantity is correct multiple.

From my very limited knowledge of Excel, it would seem that a formula such as this would utilize the MOD function, but beyond that, I'm stuck.

I've attempted to search for potential solutions prior to posting this question, but I haven't found anything similar to what I'm looking for.

Thanks Everyone!

Cheers, Amy
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
AFAIK, cell formulas won't raise messages but I suppose you could populate a nearby cell with text or use conditional formatting. To get an actual message prompt you'd need to call a vba function. Either way, I think that next to your qty cell you'd need a unit cell and use Mod as you say. That could look like = MOD(B2,C2) in cell D2 where B2=55 and C2 = 5 Then if D2 is not 0, colour the cell.
 
Upvote 0
You could use data validation in your cell. Say your input is in B1, then use the following custom validation rule:

Excel Formula:
=MOD(B1,$A1)=0

Now B1 would only accept multiples of the value in cell A1. If not, it will notify the user.
 
Upvote 0
You could use data validation in your cell. Say your input is in B1, then use the following custom validation rule:

Excel Formula:
=MOD(B1,$A1)=0

Now B1 would only accept multiples of the value in cell A1. If not, it will notify the user.
Thank you for your reply. I attempted to use this and modified the cell references to match my worksheet. However, I'm getting a circular reference warning, so I'm obviously not understanding it correctly

In my worksheet, the input is in cell J26 and the value is in cell I26. In cell J26, I enter the following: =MOD(J26,$I26)=0

Cheers, Amy
 
Upvote 0
I would suggest having a (small?) table with product IDs and respective multiples.
Then, a drop-down (my example uses D2) to select the product and another cell to indicate the order qty.
You could use conditional formatting to color or whatever an invalid quantity and another cell with an IF statement to report on the situation.

Book1
ABCDE
1ProductMultiplesProduct OrderedQTY Ordered
2AAA2EEE24
3BBB5
4CCC10
5DDD5
6EEE12
7FFf5
Sheet1


E1 is:
Code:
=IF(0<>MOD(E2,VLOOKUP(D2,A2:B7,2,FALSE)),"Invalid QTY","")

ProductMultiplesProduct OrderedQTY Ordered
AAA
2​
EEE
10​
Invalid QTY
BBB
5​
CCC
10​
DDD
5​
EEE
12​
FFf
5​
 
Upvote 0
Why is 10 not a valid order amount for multiples of 2?
However, I'm getting a circular reference warning, so I'm obviously not understanding it correctly
Your formula cell cannot reference itself. You'd put each input value into separate columns and the formula in a third column as suggested in post 2 where the sample columns were B, C, and D.
 
Upvote 0
T202303a.xlsm
ABCDEF
1ProductMultiplesProduct OrderedQTY OrderedFormula for Validation
2AAA2EEE24OK
3BBB5AAA10OK
4CCC10FFF16Invalid
5DDD5DDD100OK
6EEE12DDD24Invalid
7FFf5
3a
Cell Formulas
RangeFormula
F2:F6F2=IF(MOD(E2,VLOOKUP(D2,$A$2:$B$7,2,0)),"Invalid","OK")
 
Upvote 0
Another problem with multiples of 12, ordered 24 and that's not OK?
I'd just use simple Mod function; just make sure it's in its own column. Complicated formulas just seem to be prone to error.
 
Upvote 0
Thank you for your reply. I attempted to use this and modified the cell references to match my worksheet. However, I'm getting a circular reference warning, so I'm obviously not understanding it correctly

In my worksheet, the input is in cell J26 and the value is in cell I26. In cell J26, I enter the following: =MOD(J26,$I26)=0

Cheers, Amy
It worked fine for me, people said the formula needs to be in a third column which is not true. Make sure the 1st parameter is the cell that you wish to have user input, the 2nd parameter is the cell that holds the constant you wish to check the input against. Check the test below.

See this test!
 
Upvote 1
Solution
It worked fine for me, people said the formula needs to be in a third column which is not true. Make sure the 1st parameter is the cell that you wish to have user input, the 2nd parameter is the cell that holds the constant you wish to check the input against. Check the test below.

See this test!
Thank you for this, I appreciate it! It works brilliantly and very simple to implement without adding any further columns.
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,692
Members
449,117
Latest member
Aaagu

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