Computer Science, asked by om87sing, 10 months ago

give the sentence example of any three string function in spreadsheet​

Answers

Answered by sd9884816830
1

Answer:

What is the Excel TEXT Function?

The Excel TEXT Function is used to convert numbers to text within a spreadsheet. Essentially, the function will convert a numeric value into a text string. TEXT is available in all versions of Excel.

Formula

=Text(Value, format_text)

Where:

Value is the numerical value that we need to convert to text

Format_text is the format we want to apply

When is the Excel TEXT Function required?

We use the TEXT function in the following circumstances:

When we want to display dates in a specified format

When we wish to display numbers in a specified format or in a more legible way

When we wish to combine numbers with text or characters

Examples

1. Basic example – Excel Text Function

With the following data, I need to convert the data to “d mmmm, yyyy” format. When we insert the text function, the result would look as follows:

Text Function in Excel

2. Using Excel TEXT with other functions

We use the old price and the discount given in cells A5 and B5. The quantity is given in C5. We wish to show some text along with the calculations. We wish to display the information as follows:

The final price is $xxx

Where xxx would be the price in $ terms.

For this, we can use the formula:

=”The final price is “&TEXT(A5*B5*C5, “$###,###.00”)

Excel TEXT Function - Other Functions

The other way to do it by using the CONCATENATE function as shown below:

Excel TEXT Function - CONCATENATE

Similar questions