You are on page 1of 18

Concatenate Numerical Values

Value 1 Value 2
34 48.88

Output Formulas
34 and 48.88 =B5&" and "&C5
34 and 48.88 =CONCATENATE(B5," and ",C5)
34 and 48.88 =CONCAT(B5&" and "&C5)
34 and 48.88 =TEXTJOIN(" and ",TRUE(),B5,C5)
>>> Do Yourself >>>

Value 1 Value 2
34 48.88

Output Formulas
With Ampersand
With CONCATENATE Function
With CONCAT Function
With TEXTJOIN Function
Concatenate Fraction Numbers

Value 1 Value 2
5/6 6 2/7

Output Formulas
5/6 and 6 2/7 =TEXT(B5,"#/#")&" and "&TEXT(C5,"# 0/0")
5/6 and 6 2/7 =CONCATENATE(TEXT(B5,"#/#")," and ",TEXT(C5,"# 0/0"))
5/6 and 6 2/7 =CONCAT(TEXT(B5,"#/#")&" and "&TEXT(C5,"# 0/0"))
5/6 and 6 2/7 =TEXTJOIN(" and ",TRUE(),TEXT(B5,"#/#"),TEXT(C5,"# 0/0"))
>>> Do Yourself >>>

Value 1 Value 2
5/6 6 2/7

Output Formulas
With Ampersand
With CONCATENATE Function
With CONCAT Function
With TEXTJOIN Function
Yourself >>>

Formulas
With Ampersand
With CONCATENATE Function
With CONCAT Function
With TEXTJOIN Function
Concatenate Date and Time

Date Time
10/5/2021 6:57:12 PM

Output Formulas
05-10-2021, 06:57:12 PM =TEXT(B5,"DD-MM-YYYY")&", "&TEXT(C5,"HH:MM:SS AM/PM")
05-10-2021, 06:57:12 PM =CONCATENATE(TEXT(B5,"DD-MM-YYYY"),", ",TEXT(C5,"HH:MM:SS AM/PM"))
05-10-2021, 06:57:12 PM =CONCAT(TEXT(B5,"DD-MM-YYYY")&", "&TEXT(C5,"HH:MM:SS AM/PM"))
05-10-2021, 06:57:12 PM =TEXTJOIN(", ",TRUE(),TEXT(B5,"DD-MM-YYYY"),TEXT(C5,"HH:MM:SS AM/PM"))
oncatenate Date and Time

Formulas
-MM-YYYY")&", "&TEXT(C5,"HH:MM:SS AM/PM")
TE(TEXT(B5,"DD-MM-YYYY"),", ",TEXT(C5,"HH:MM:SS AM/PM"))
T(B5,"DD-MM-YYYY")&", "&TEXT(C5,"HH:MM:SS AM/PM"))
",TRUE(),TEXT(B5,"DD-MM-YYYY"),TEXT(C5,"HH:MM:SS AM/PM"))
>>> Do Yourself >>>

Date Time
10/5/2021 6:57:12 PM

Output Formulas
With Ampersand
With CONCATENATE Function
With CONCAT Function
With TEXTJOIN Function
>> Do Yourself >>>

Formulas
With Ampersand
With CONCATENATE Function
With CONCAT Function
With TEXTJOIN Function
Concatenate Currency Values

Currency 1 Currency 2
$ 4,400.00 $ 2,300.00

Output Formulas
$ 4,400.00 and $ 2,300.00 =TEXT(B5,"$ 0,000.00")&" and "&TEXT(C5,"$ 0,000.00")
$ 4,400.00 and $ 2,300.00 =CONCATENATE(TEXT(B5,"$ 0,000.00")," and ",TEXT(C5,"$ 0,000.00"))
$ 4,400.00 and $ 2,300.00 =CONCAT(TEXT(B5,"$ 0,000.00")&" and "&TEXT(C5,"$ 0,000.00"))
$ 4,400.00 and $ 2,300.00 =TEXTJOIN(" and ",TRUE(),TEXT(B5,"$ 0,000.00"),TEXT(C5,"$ 0,000.00"))
>>> Do Yourself >>>

Currency 1 Currency 2
$ 4,400.00 $ 2,300.00

Output Formula
With Ampers
With CONCATENAT
With CONCAT Fu
With TEXTJOIN F
Do Yourself >>>

Formulas
With Ampersand
With CONCATENATE Function
With CONCAT Function
With TEXTJOIN Function
Concatenate Percentages

Value 1 Value 2
24.00% 28.60%

Output Formulas
24.00 % and 28.60 % =TEXT(B5,"00.00 %")&" and "&TEXT(C5,"00.00 %")
24.00 % and 28.60 % =CONCATENATE(TEXT(B5,"00.00 %")," and ",TEXT(C5,"00.00 %"))
24.00 % and 28.60 % =CONCAT(TEXT(B5,"00.00 %")&" and "&TEXT(C5,"00.00 %"))
24.00 % and 28.60 % =TEXTJOIN(" and ",TRUE(),TEXT(B5,"00.00 %"),TEXT(C5,"00.00 %"))
>>> Do Yourself >>>

Value 1 Value 2
24.00% 28.60%

Output Formulas
With Ampersand
With CONCATENATE Fu
With CONCAT Functi
With TEXTJOIN Functi
Yourself >>>

Formulas
With Ampersand
With CONCATENATE Function
With CONCAT Function
With TEXTJOIN Function
Concatenate Scientific Numbers

Value 1 Value 2
2.23E+045 4.8E+023

Output Formulas
2.23E+45 and 4.80E+23 =TEXT(B5,"0.00E+00")&" and "&TEXT(C5,"0.00E+00")
2.23E+45 and 4.80E+23 =CONCATENATE(TEXT(B5,"0.00E+00")," and ",TEXT(C5,"0.00E+00"))
2.23E+45 and 4.80E+23 =CONCAT(TEXT(B5,"0.00E+00")&" and "&TEXT(C5,"0.00E+00"))
2.23E+45 and 4.80E+23 =TEXTJOIN(" and ",TRUE(),TEXT(B5,"0.00E+00"),TEXT(C5,"0.00E+00"))
>>> Do Yourself >>>

Value 1 Value 2
2.23E+045 4.8E+023

Output Formulas
With Ampersand
With CONCATENATE Functi
With CONCAT Function
With TEXTJOIN Function
rself >>>

Formulas
With Ampersand
With CONCATENATE Function
With CONCAT Function
With TEXTJOIN Function

You might also like