How can we format and protect cells to not accept text, only numbers?
R Ron de Bruin Jul 21, 2006 #2 Hi cradino Example for cell A1 You can try Data>Validation ..Custom with this formula =ISNUMBER(A1)
S SteveG Jul 22, 2006 #4 cradino, Use data validation. Select the cells you want to apply the data validation to. Go to Data>Validation. Select Decimal or Whole number from the Allow list then choose your minimum and maximum number and click OK. HTH Steve
cradino, Use data validation. Select the cells you want to apply the data validation to. Go to Data>Validation. Select Decimal or Whole number from the Allow list then choose your minimum and maximum number and click OK. HTH Steve
V VBA Noob Jul 22, 2006 #5 Hi, You could use Data Validation. Go to Data > Data Validation then select custom and insert this formula =ISNUMBER(E10:J19).....Change range as required. You can also put instructions to the user in Input message and error messages when they try to enter non numbers This link should help http://www.contextures.com/xlDataVal01.html VBA Noob
Hi, You could use Data Validation. Go to Data > Data Validation then select custom and insert this formula =ISNUMBER(E10:J19).....Change range as required. You can also put instructions to the user in Input message and error messages when they try to enter non numbers This link should help http://www.contextures.com/xlDataVal01.html VBA Noob