120k views
0 votes
The display in D1 should read, "Colin McCain”.

What text function should be used?

SUBSTITUTE(D1,“c”,”C”)
SUBSTITUTE(D1,“C”,”c”,1)
SUBSTITUTE(D1,“C”,”C”,1)
SUBSTITUTE(D1,“c”,”C”,2)

User MADMap
by
5.3k points

1 Answer

4 votes

Answer:

SUBSTITUTE(D1,“c”,”C”,1) is the correct answer to be used to display in D1 should read, "Colin McCain”.

Step-by-step explanation:

In MS-Excel they are many in bulletin function is available.

SUBSTITUTE is in builtin and is available in ms-excel. The purpose of these function to find a char or string and replace with new string or char on selected cell or range cells.

In this scenario, the end-user likes to replace small letter char “c” with a capital letter “C”.

And displays the changes in D1 cells.

SUBSTITUTE has four parameters.

1. Output cell reference

2. What character or string to be found

3. What to be replaced with character or string if case search character or string founded.

4. from where the search to start from the given length of string

User BenRollag
by
4.8k points