Consulting

Results 1 to 4 of 4

Thread: Translator for EXCEL functions

  1. #1

    Translator for EXCEL functions

    The attached EXCEL-File helps to find EXCEL-functions (formulas) in 9 different languages (Englisch, Deutsch, Français, Español, Português, Nederlands, Suomi, Italiano, Svenska).

    I hope people here, can make use of it!

    GreetZ Hansueli

  2. #2
    Administrator
    VP-Knowledge Base
    VBAX Grand Master mdmackillop's Avatar
    Joined
    May 2004
    Location
    Scotland
    Posts
    14,489
    Location
    Thanks very much for this contribution. I'm sure many will find it useful.
    Regards
    MD
    MVP (Excel 2008-2010)

    Post a workbook with sample data and layout if you want a quicker solution.


    To help indent your macros try Smart Indent

    Please remember to mark threads 'Solved'

  3. #3
    VBAX Tutor Benzadeus's Avatar
    Joined
    Dec 2008
    Location
    Belo Horizonte, Brazil
    Posts
    271
    Location
    My Excel is Portuguese-BR. Whenever I want to translate an English formula to portuguese formula, I just type ' (semi-colon) before the formula, like:

    '=VLOOKUP(C1,A1:B10,2,0)

    then I create this code on VBA:
    [VBA]Sub TraslateFunction()
    ActiveCell = ActiveCell.Formula
    End Sub[/VBA]

    The result I'll get is the formula on my native language:
    =PROCV(C1;A1:B10;2;0)
    ---
    Felipe Costa Gualberto
    Microsoft Excel MVP
    http://www.ambienteoffice.com.br

  4. #4
    VBAX Newbie
    Joined
    Jun 2012
    Posts
    4
    Location
    good job

Posting Permissions

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