answersLogoWhite

0


Best Answer

No. You use the & as the concatenation character in a formula. The following will add the two pieces of text together resulting in one piece of text:

="Hello " & "World"

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is the backslash a concatenation character in Excel?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the concatenation operator called for excel?

The ampersand, which is this character: &


Is the ampersand character the concatenation operator in excel?

yes


Can you use concatenation in a sentence please?

One on the most powerful tools in Excel is the ability to use concatenation.


What character is the backslash?

The backslash character "" is typically used as an escape character in programming languages to indicate that the character following it has a special meaning. It is also used to separate directory levels in file paths on Windows operating systems.


What is the white and blue monsuno character called?

backslash


What is the formula of combination of letters numbers and some symbols in Excel?

A combination of letters and numbers and symbols is a character set. To use a formula to combine letter and numbers and symbols is known as concatenation.


What is concatenating operator on Microsoft Excel?

The & is the concatenation operator. It could be used like this: =A1 & A2


In Window's which character is used as a path separator?

/ forward slash ^First answer is wrong. It's the backslash (\)


What is the white and blue bear monsuno character called?

backslash


What is a backslash?

This is a back slash: \. It is usually above the enter key.


Which character is used as a path separator?

Under Microsoft Windows, the character that separates directories within a path is the backslash ( \ ). For compatibility with UNIX, the forward slash ( / ) is now also generally accepted.


What does backslash mean in programming?

In computing, the backslash character \ has many different uses. Aside from being the file path separator character on Windows-based operating systems, the backslash most commonly is used as an escape character. An escape character is one that alters the meaning of the character which follows it:On a Unix console, a backslash can prevent a space from breaking two words into two tokens.In C programming (and many other programming languages), when used within a string, a backslash character is the preamble to an escape sequence, a one or more character sequence with a special meaning. For example, \n stands for a newlinecommand when interacting with console output, \x12represents a character with the hexadecimal value 12.In C programming, when used outside a string and as the last character on an input line, the backslash indicates line continuation. The compiler will thus treat the current line and the one that follows as one line of input.In regular expressions, a backslash character is typically used to change a special character into a plain character. For example, most regular expression dialects recognize the period as an operator that matches any input character. The sequence \. can be used to match a period.