+ Reply to Thread
Results 1 to 4 of 4

synonyms

  1. #1
    SURESH
    Guest

    synonyms

    i required your help in this regard.. it may be silly/hard? for you...

    that.. if i wrote "great" in Cell A2, i want Great's synonyms in B2.... and
    also if there is any spelling mistake .. thats too want to know in C2 ( or
    Great)

    thanks in advance
    Great regards,
    suresh tp




  2. #2
    Tom Ogilvy
    Guest

    Re: synonyms

    Do you have a synonym dictionary.

    One I checked provided:

    admirable, ample, august, avid, big, capital, celebrated, chief,
    consequential, considerable, critical, deep, desperate, dignified,
    distinguished, eager, eminent, enceinte, enormous, exalted, expectant,
    extensive, extreme, famed, famous, fantastic, far-out, fine, gigantic, good,
    grand, gravid, gross, heavy, high, honourable, huge, illustrious, immense,
    important, large, leading, lofty, main, majuscule, marvellous, marvelous,
    mighty, monstrous, monumental, noble, notable, noteworthy, outstanding,
    princely, principal, prominent, remarkable, renowned, serious, splendid,
    strong, terrific, towering, vast, weighty, with child, wonderful, zealous

    or did you mean anagrams?

    --
    Regards,
    Tom Ogilvy



    "SURESH" <way2suresh@gmail.com> wrote in message
    news:OITJokJrFHA.464@TK2MSFTNGP15.phx.gbl...
    > i required your help in this regard.. it may be silly/hard? for you...
    >
    > that.. if i wrote "great" in Cell A2, i want Great's synonyms in B2....

    and
    > also if there is any spelling mistake .. thats too want to know in C2 ( or
    > Great)
    >
    > thanks in advance
    > Great regards,
    > suresh tp
    >
    >
    >




  3. #3
    SURESH
    Guest

    Re: synonyms

    Dear Tom

    nothing i am having except Microsoft office... in MS-word when getting any
    doubt i am going to get synonyms from dictionery (Shift+F7)
    i am talking about this... as simple as that i want it in Excel

    thanks and regards,
    suresh tp

    "Tom Ogilvy" <twogilvy@msn.com> wrote in message
    news:#TZa4rJrFHA.3836@TK2MSFTNGP12.phx.gbl...
    > Do you have a synonym dictionary.
    >
    > One I checked provided:
    >
    > admirable, ample, august, avid, big, capital, celebrated, chief,
    > consequential, considerable, critical, deep, desperate, dignified,
    > distinguished, eager, eminent, enceinte, enormous, exalted, expectant,
    > extensive, extreme, famed, famous, fantastic, far-out, fine, gigantic,

    good,
    > grand, gravid, gross, heavy, high, honourable, huge, illustrious, immense,
    > important, large, leading, lofty, main, majuscule, marvellous, marvelous,
    > mighty, monstrous, monumental, noble, notable, noteworthy, outstanding,
    > princely, principal, prominent, remarkable, renowned, serious, splendid,
    > strong, terrific, towering, vast, weighty, with child, wonderful, zealous
    >
    > or did you mean anagrams?
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    >
    >
    > "SURESH" <way2suresh@gmail.com> wrote in message
    > news:OITJokJrFHA.464@TK2MSFTNGP15.phx.gbl...
    > > i required your help in this regard.. it may be silly/hard? for you...
    > >
    > > that.. if i wrote "great" in Cell A2, i want Great's synonyms in B2....

    > and
    > > also if there is any spelling mistake .. thats too want to know in C2

    ( or
    > > Great)
    > >
    > > thanks in advance
    > > Great regards,
    > > suresh tp
    > >
    > >
    > >

    >
    >




  4. #4
    Tom Ogilvy
    Guest

    Re: synonyms

    Here is some starter code I found for you


    Public Sub SynonymFind1()
    ' revised by tom ogilvy
    Dim wdApp As Word.Application
    Set wdApp = New Word.Application
    vSyn = Application.Proper(ActiveCell.Text)
    On Error GoTo ErrHandler
    If wdApp.SynonymInfo(Word:=vSyn, _
    LanguageID:=wdEnglishUS).Found = True _
    And wdApp.SynonymInfo(Word:=vSyn, _
    LanguageID:=wdEnglishUS).MeaningCount > 0 Then
    vList = SynonymInfo(Word:=vSyn, _
    LanguageID:=wdEnglishUS).SynonymList(1)
    For i = 1 To UBound(vList)
    ActiveCell.Offset(0, i).Value = vList(i)
    Next i
    End If
    ErrHandler:
    wdApp.Quit
    MsgBox ("FINISHED")
    End Sub


    --
    Regards,
    Tom Ogilvy

    "SURESH" <way2suresh@gmail.com> wrote in message
    news:ODdHLRWrFHA.2072@TK2MSFTNGP14.phx.gbl...
    > Dear Tom
    >
    > nothing i am having except Microsoft office... in MS-word when getting any
    > doubt i am going to get synonyms from dictionery (Shift+F7)
    > i am talking about this... as simple as that i want it in Excel
    >
    > thanks and regards,
    > suresh tp
    >
    > "Tom Ogilvy" <twogilvy@msn.com> wrote in message
    > news:#TZa4rJrFHA.3836@TK2MSFTNGP12.phx.gbl...
    > > Do you have a synonym dictionary.
    > >
    > > One I checked provided:
    > >
    > > admirable, ample, august, avid, big, capital, celebrated, chief,
    > > consequential, considerable, critical, deep, desperate, dignified,
    > > distinguished, eager, eminent, enceinte, enormous, exalted, expectant,
    > > extensive, extreme, famed, famous, fantastic, far-out, fine, gigantic,

    > good,
    > > grand, gravid, gross, heavy, high, honourable, huge, illustrious,

    immense,
    > > important, large, leading, lofty, main, majuscule, marvellous,

    marvelous,
    > > mighty, monstrous, monumental, noble, notable, noteworthy, outstanding,
    > > princely, principal, prominent, remarkable, renowned, serious, splendid,
    > > strong, terrific, towering, vast, weighty, with child, wonderful,

    zealous
    > >
    > > or did you mean anagrams?
    > >
    > > --
    > > Regards,
    > > Tom Ogilvy
    > >
    > >
    > >
    > > "SURESH" <way2suresh@gmail.com> wrote in message
    > > news:OITJokJrFHA.464@TK2MSFTNGP15.phx.gbl...
    > > > i required your help in this regard.. it may be silly/hard? for you...
    > > >
    > > > that.. if i wrote "great" in Cell A2, i want Great's synonyms in

    B2....
    > > and
    > > > also if there is any spelling mistake .. thats too want to know in C2

    > ( or
    > > > Great)
    > > >
    > > > thanks in advance
    > > > Great regards,
    > > > suresh tp
    > > >
    > > >
    > > >

    > >
    > >

    >
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1