17. What will be the result if you type =A1=B1 in cell C1?
Answers
Answered by
1
Answer:
Type = (A1&” “&B1) in C1 and press enter. Combined string will appear in cell C1. What this formula is doing is concatenating three strings. First it brings content of cell A1 and suffix it with a space (there is a space between double quotes) and then content of cell B1 are suffixed to it.
Similar questions