
- MS Excel Basics
- Excel - Home
- Excel - Getting Started
- Excel - Explore Window
- Excel - Backstage
- Excel - Entering Values
- Excel - Move Around
- Excel - Save Workbook
- Excel - Create Worksheet
- Excel - Copy Worksheet
- Excel - Hiding Worksheet
- Excel - Delete Worksheet
- Excel - Close Workbook
- Excel - Open Workbook
- Excel - Context Help
- Editing Worksheet
- Excel - Insert Data
- Excel - Select Data
- Excel - Delete Data
- Excel - Move Data
- Excel - Rows & Columns
- Excel - Copy & Paste
- Excel - Find & Replace
- Excel - Spell Check
- Excel - Zoom In-Out
- Excel - Special Symbols
- Excel - Insert Comments
- Excel - Add Text Box
- Excel - Undo Changes
- Formatting Cells
- Excel - Setting Cell Type
- Excel - Setting Fonts
- Excel - Text Decoration
- Excel - Rotate Cells
- Excel - Setting Colors
- Excel - Text Alignments
- Excel - Merge & Wrap
- Excel - Borders and Shades
- Excel - Apply Formatting
- Formatting Worksheets
- Excel - Sheet Options
- Excel - Adjust Margins
- Excel - Page Orientation
- Excel - Header and Footer
- Excel - Insert Page Breaks
- Excel - Set Background
- Excel - Freeze Panes
- Excel - Conditional Format
- Working with Formula
- Excel - Creating Formulas
- Excel - Copying Formulas
- Excel - Formula Reference
- Excel - Using Functions
- Excel - Builtin Functions
- Advanced Operations
- Excel - Data Filtering
- Excel - Data Sorting
- Excel - Using Ranges
- Excel - Data Validation
- Excel - Using Styles
- Excel - Using Themes
- Excel - Using Templates
- Excel - Using Macros
- Excel - Adding Graphics
- Excel - Cross Referencing
- Excel - Printing Worksheets
- Excel - Email Workbooks
- Excel- Translate Worksheet
- Excel - Workbook Security
- Excel - Data Tables
- Excel - Pivot Tables
- Excel - Simple Charts
- Excel - Pivot Charts
- Excel - Keyboard Shortcuts
- MS Excel Resources
- Excel - Quick Guide
- Excel - Useful Resources
- Excel - Discussion
How to Apply Spell Check in Excel Textbox?
We frequently use the "spell check" feature in Word, but have you ever tried to apply spell check for textboxes in Excel? This is not an inbuilt process for Excel; hence, we need to modify the textbox in order to complete our process. The spell check can’t be applied to normal textboxes; it needs to be an ActiveX command textbox, which will be present under the developer option in Excel.
Read this tutorial to understand how you can apply spell check in an Excel textbox.
Applying Spell Check in Excel Textbox
Here we will first insert a VBA module and then run it to complete the task. Let us see a simple process to understand how we can apply spell check for textboxes in Excel. We will be using the help of the VBA application in order to complete our process.
Step 1
Let us consider an Excel sheet where an ActiveX command textbox is present, as shown in the below image. To enter the data into the textbox, exit the design mode and then enter the data.
To use the spell check, exit design mode, then right-click on the textbox and select view code to open the VBA application, then replace the existing code with the programme shown in the figure below.
Program
Sub SpellChkRvw_Click() 'updated by Nirmal Dim xObject As Object Dim xCell As Range On Error Resume Next Set xCell = ActiveSheet.Cells(ActiveSheet.Rows.Count, ActiveSheet.Columns.Count) If ActiveSheet.OLEObjects.Count > 0 Then For Each xObject In ActiveSheet.OLEObjects xCell = xObject.Object.Text xCell.CheckSpelling , , , 1033 xObject.Object.Text = xCell Next End If End Sub
Step 2
Now save the sheet with macros enabled, then click on F5 to run the code and complete our process as shown in the below image.
Conclusion
In this tutorial, we used a simple example to demonstrate how we can apply spell check to textboxes in Excel to highlight a particular set of data.
- Related Articles
- HTML Spell Check
- How to Autocomplete a Textbox When Typing in Excel?
- How to Automatically Resize the Textbox to Fit the Contents in Excel?
- How to Apply Same Formula to Multiple Cells in Excel?
- How to disable spell check from input box and text area in HTML forms?
- How to Apply Colour Banded Rows or Columns in Excel?
- How to Apply Colour Gradient Across Multiple Cells in Excel?
- How to Apply Conditional Formatting across Worksheets /Workbooks in Excel?
- How to Apply Conditional Formatting based on VLOOKUP in Excel?
- How to Apply Custom Number Format in an Excel Chart?
- How to Apply a Button to Clear Specific Cells in Excel?
- How to Apply a Button to Open Another Workbook in Excel?
- How to Apply Data Validation to Allow Only Numbers in Excel?
- How to Apply the Same Filter to Multiple Sheets in Excel?
- How to Apply Conditional Formatting Search for Multiple Words in Excel?
