如何将单词分类到每条记录中(用户函数)?

How sort words into each record (user function)?

我的数据库中有一些记录:

Record 1: I knock the door
Record 2: I do not believe that
Record 3: They bought shoes, trousers and shirts
Record 4: They stayed with him in silence

应用用户函数后的结果:

Record 1: door I knock the
Record 2: believe do I not that
Record 3: and bought shirts shoes They trousers
Record 4: him in silence stayed They with

通过这个计算就可以完成,

Trim ( 替代 ( SortValues ( 替代 ( "I knock the door"; " "; ¶ ) ); ¶; " " ) )

结果将是 "door I knock the"

将文本 "I knock the door" 替换为您的字段名称。