REDUCE Function in Excel (Extract Uppercase Words ONLY )

REDUCE Function in Excel (Extract Uppercase Words ONLY )

Computergaga

1 месяц назад

1,489 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@ExcelWithChris
@ExcelWithChris - 02.05.2024 13:40

Thank you!!! I see some South African surnames...... interesting.

Ответить
@IvanCortinas_ES
@IvanCortinas_ES - 02.05.2024 14:52

Great explanation Alan! Thanks for explaining these iterator functions.

Ответить
@Softwaretrain
@Softwaretrain - 02.05.2024 15:55

Thank you Alan, alternatively, we can use the below formula:
=LET(
a,TEXTSPLIT(A2,," "),
TEXTJOIN(" ",,FILTER(a,EXACT(a,UPPER(a)))))
or if we want one formula without drag it down:
=BYROW(A2:A15,
LAMBDA(x,LET(
a,TEXTSPLIT(x,," "),
TEXTJOIN(" ",,FILTER(a,EXACT(a,UPPER(a)))))))

Ответить
@JoseAntonioMorato
@JoseAntonioMorato - 02.05.2024 17:08

Dear Alan,
Just to spill, without using the TRIM function:
=BYROW(A2:A15,LAMBDA(a,REDUCE("",TEXTSPLIT(a," "),LAMBDA(acc,v,IF(EXACT(v,UPPER(v)),acc&v,acc))))) 🤗

Ответить
@nadermounir8228
@nadermounir8228 - 02.05.2024 17:42

Thank u Alan for this great video. In the true value of the of function. Can we just use V instead of acc” “&V ?

Ответить
@conradblume4274
@conradblume4274 - 02.05.2024 23:12

Excellent Video!

Ответить
@xeeshanahmad8757
@xeeshanahmad8757 - 03.05.2024 14:47

Excellent Sir

Ответить
@chandramohan1418
@chandramohan1418 - 03.05.2024 18:30

these are not available for users of 365?

Ответить
@petercompton538
@petercompton538 - 20.05.2024 06:15

Brilliant!

Ответить
@Mishkafofer
@Mishkafofer - 08.06.2024 00:05

What is interesting is that it basically a looping inside Excel. Until Dynamic Array, i presume it only could have been done only in VBA.

Ответить
@ahmetkaraaslan7880
@ahmetkaraaslan7880 - 16.06.2024 04:26

Hocam emeğinize sağlık Excelde uzman değilim Excel 2016 kullanıyorum 2016 versiyona göre formül ile yapabilimisiniz

Ответить