Consulting

Results 1 to 2 of 2

Thread: Customised spell check in VBA

  1. #1

    Customised spell check in VBA

    Hi everyone,

    I am a newbie and I have a generic question, if you can point me to the right direction that would be perfect
    I need to create a customised dictionary in excel, maybe using vba as mostly data I receive comes with misspellings or just shortened like cse for case, blk for for black and etc. Ideally I would like to have a customised list that I can updated when needed. I have a huge list so far to upload in bulk but will be adding words to the list from time to time. Is it possible, if so could you suggest any source to read/watch/etc?

    Thanks a lot

  2. #2
    VBAX Expert Logit's Avatar
    Joined
    Sep 2016
    Posts
    613
    Location
    .
    Don't recreate the wheel.

    Option Explicit
    Sub chkSpell()
    
    
    '//Add to ThisWorkbook
    '//Brings up UK Spell Check before closing
    
    
        Cells.CheckSpelling SpellLang:=2057 '//UK Spellcheck
        '//Cells.CheckSpelling SpellLang:=1033 '//US English Spellcheck
        
    '// looking for list of langauge codes
    '// will post in comments when i find a list
        
    End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •