Mar 06 2024 01:19 AM
It needs to be done as in the screenshot, I have already tried, but all attempts were unsuccessful and to no avail
{1:SHORTANSWER:=}
Help me please
Mar 06 2024 03:15 AM
It seems like you're trying to create a formula in Excel, but the provided text "{1:SHORTANSWER:=}" doesn't be a valid Excel formula. The term "SHORTANSWER" does not represent a built-in function or formula in Excel or Google Sheets, so far I know. It seems to be a placeholder or a specific syntax used in a particular context, such as in a template or a form for collecting short answers or responses.
In Excel, you typically use built-in functions like SUM, AVERAGE, VLOOKUP, etc., to perform calculations or manipulate data within cells. Similarly, in Google Sheets, you use functions like SUM, AVERAGE, VLOOKUP, etc., for similar purposes.
If you're referring to a specific feature or function called "SHORTANSWER" in a specific application or context, please provide more details, see in the link please about the details: Welcome to your Excel discussion space!.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and like it!
This will help all forum participants.
Mar 06 2024 03:22 AM
Mar 06 2024 03:31 AM
Mar 06 2024 04:18 AM
Mar 06 2024 06:21 AM
SolutionTry this Lambda which is designed to handle arrays:
'ShortAnswer
=LAMBDA(array,LET(
AddText, LAMBDA(each_string,
LET(
answer, "{1:SHORTANSWER:=",
split, TEXTSPLIT(each_string, " ", CHAR(10)),
strings, MAP(split, LAMBDA(e, answer & e & "} ")),
CONCAT(strings)
)
),
BYROW(array, AddText)
))
Mar 06 2024 07:12 AM - edited Mar 06 2024 02:02 PM
I think I've figured out what the problem is. The problem is that I have Excel with a Russian translation. He does not perceive functions in English well. For example =ТЕКСТ (tr: =TEXT) works, but already in English =TEXT gives an error
Thank you very much!
Mar 06 2024 03:34 PM
Mar 06 2024 04:01 PM
Mar 06 2024 06:21 AM
SolutionTry this Lambda which is designed to handle arrays:
'ShortAnswer
=LAMBDA(array,LET(
AddText, LAMBDA(each_string,
LET(
answer, "{1:SHORTANSWER:=",
split, TEXTSPLIT(each_string, " ", CHAR(10)),
strings, MAP(split, LAMBDA(e, answer & e & "} ")),
CONCAT(strings)
)
),
BYROW(array, AddText)
))