Typo Checking

rcocrane99

New Member
Joined
May 9, 2024
Messages
32
Office Version
  1. 365
Platform
  1. Windows
Hey Everyone so basically I have a tracker that me and my team fill out multiple times a day and I'd like to limit the amount of typos. for example instead of typing 7.7 an operator types 7,7 and therefor the number isnt taken into consideration in some statistical formulas I need. I share this and they fill it out on a tablet so it cannot have any VBA. see below an example of what I need
1718060630368.png
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
A couple ways you can do it, either highlighting the errors with conditional formatting or preventing the errors with data validation.

Example of CF to highlight the errors:
Book1
ABC
11.18.438.72
20122.2122.2
352.12.24
45.54.814,95
55,63001.17
67.71023.66
711.040.72
82.93.064.72
93.54.15,06
104.61.439.99
Sheet3
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A1:C10Expression=ISNUMBER(SEARCH(",",A1))textNO


Data validation preventing the entry of a comma:
1718063215028.png


DV formula applied to range E1:E10 (DV rule applied to E1, then copy cells to E10 to apply the rule to the range):
Excel Formula:
=ISNUMBER(SEARCH(",",E1))=FALSE
 
Last edited:
Upvote 0
Hey Artik, could you elaborrate please for me, and I actually agree with istext it isn't specifically a comma but any text I'd like to flag incase there is a mistype
 
Upvote 0
Why not use the built-in Decimal data validation?
Screen Shot 2024-06-10 at 9.14.01 PM.png
 
Upvote 0
Solution

Forum statistics

Threads
1,221,844
Messages
6,162,346
Members
451,760
Latest member
samue Thon Ajaladin

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