Terjemahkan teks dari satu bahasa ke bahasa lain
=TRANSLATE(text, [source_language], [target_language])
| Parameter | Deskripsi |
|---|---|
text |
The text to translate as a string or cell reference. |
source_language |
[optional] The source language code. Default = auto-detected.. |
target_language |
[optional] The target language code. Default = system. |
The TRANSLATE function translates text from one language to another in Excel. To perform a translation, TRANSLATE requires the text to translate and l
=TRANSLATE(text,[source_language],[target_language])
To use the TRANSLATE function, provide the text to translate, the source language language as a language code, and the desired target language as a la
=TRANSLATE("apple","en","fr") // returns "pomme"
=TRANSLATE("apple","en","it") // returns "mela"
=TRANSLATE("apple","en","de") // returns "Apfel"
=TRANSLATE("apple","en","es") // returns "manzana"
In this example, the goal is to translate the text entered in cell C5 into the 9 languages in the table below, using the codes in the range B8:B16 to
=TRANSLATE($C$5,$B$5,B8)
In this example, the goal is to translate instructions dynamically based on the language selected in a dropdown list, as shown in the workbook below.
=TRANSLATE(B4,"en",target)
Below is the XLOOKUP formula in F5:
=XLOOKUP(D5,languages[Language],languages[Code])