[]
        
(Showing Draft Content)

SJS.AI.TRANSLATE

Summary

SJS.AI.TRANSLATE​​ is a function in SpreadJS that enables translation of specified content into a target language. Powered by AI technology, it provides fast and accurate multilingual text conversion, ideal for international data processing, report translation, and similar scenarios.

Syntax

=SJS.AI.TRANSLATE(array, language)

Arguments

Parameter

Description

array

Required

The input text or a cell reference containing the text to be translated.

language

Required

The target language, such as 'Japanese,' 'Chinese,' 'English,' or 'Korean,' can also be represented as a culture like 'ja-JP,' 'zh-CN,' 'en-US,' or 'ko-KR'.

Remarks:

  • SJS.AI.TRANSLATE is an asynchronous formula that will return #BUSY! during the analysis process.

Examples

Translate the contents of range A1:B9 into Japanese

=SJS.AI.TRANSLATE(A1:B9, "ja-jp")
//or
=SJS.AI.TRANSLATE(A1:B9, "Japanese")

image