Excel CONCATENATE Using IF and COUNTA

  Рет қаралды 123,975

Six Minutes. Smarter.

Six Minutes. Smarter.

Күн бұрын

Пікірлер: 40
@Astronomynatureandmusic
@Astronomynatureandmusic 12 жыл бұрын
Great. Clear; telling what you do and showing what you tell on screen; zooming the right places. Art!
@jennasnyder6174
@jennasnyder6174 10 жыл бұрын
THANK YOU! This has been bothering me for months, you just saved me so much time!
@sklohr7343
@sklohr7343 12 жыл бұрын
Best tutorial on concatenate in Excel. Thanks!!!!!
@adrianmoore9267
@adrianmoore9267 11 жыл бұрын
I got similar results combining CONCATENATE with ISBLANK or ISTEXT. Here are the formulas I used: =IF(ISBLANK(C2),CONCATENATE(B2," ",A2),CONCATENATE(B2," ",C2,"."," ",A2)) =IF(ISTEXT(C2),CONCATENATE(B2," ",C2,"."," ",A2),CONCATENATE(B2," ",A2))
@jamesperry3837
@jamesperry3837 8 жыл бұрын
Ive seen a few vids on the CONCATENATE function and this is so unique.... Thank u for sharing
@deborahrose648
@deborahrose648 3 жыл бұрын
I love all the comments you have, they are thoughtful
@firsttwo7295
@firsttwo7295 5 жыл бұрын
how if i have more than one blank cell? how to solve this problem?
@PahlMGoff
@PahlMGoff 12 жыл бұрын
Hi Ralph. It appears we share the same profession. Your tutorials are very concise. It also helps that you have a very clear voice. Sometimes my students need a bit more help with some of the concepts you cover in your screencasts. I may direct them your way from time to time.
@cherylbeck1328
@cherylbeck1328 9 жыл бұрын
I'm so proud of myself I have to add this. Just watching this video allowed me to finish my formula. =CONCATENATE(IF($E3="United States","USA: ",IF($E3="Mexico","MEX: ",IF($E3="Canada","CAN: "," "))),IF(COUNTA(C3)=1,CONCATENATE($C3,","," ",$D3),"")) AND IT WORKS GREAT!! Thank you
@kymmontiel
@kymmontiel Жыл бұрын
hi, do you have sample for concatenate+vlookup ? thnx
@brittanyhul7989
@brittanyhul7989 7 жыл бұрын
Thanks! I wasn't sure how to get Concatenate + If to combine. After watching this, I did =IF(A4=A5, CONCATENATE(J4," ",J5), 0) which will compare a cell in two different rows and if those two cells have the same value, then the formula will concatenate other cells from each of the rows into one.
@fe_ezed
@fe_ezed 8 жыл бұрын
thats not the exactly what im looking for BUT you really help me! =IF(C2>=18;CONCATENATE("Congrats! ";C3;" you can vote this coming election");CONCATENATE("Sorry ";C3;" you can't vote this coming election")) and thats works!!
@gorflunk
@gorflunk 9 жыл бұрын
Thank you for the tutorial! You mentioned multiple ways to concatenate text. I would like to add this one: =IF(C2>0,B2&" "&C2&"."&" "&A2,B2&" "&A2) which translates to "-If C2 is not empty -then give me B2 and a space and C2 and a period and a space and A2 -else give me B2 and a space and A2." Using the ampersand as a join is sometimes quicker and clearer than using the =CONCATENATE() formula.
@AztecWarrior69_69
@AztecWarrior69_69 7 жыл бұрын
gorflunk =B2&IF(ISBLANK(C2)," "," "&C2&". ")&A2 Works better. Not so long.
@estebanherrera9271
@estebanherrera9271 6 жыл бұрын
So what if I wanted to concatenate 4 columns and there is a possibilty any of those columns could be blank how would I approach that?
@financialguru8269
@financialguru8269 Жыл бұрын
How to calculate row different values in one cell with condition value should be more than or equal to 1
@ndelpurg
@ndelpurg 8 жыл бұрын
GREAT VIDEO ! MANY THANKS FOR CLEAR PRESENTATION ! PLEASE MAKE MORE VIDEOS SO HELPFUL
@meladmalkawi2104
@meladmalkawi2104 2 жыл бұрын
Great video but id like to show u an alternative intead of using the counta function use IF C1"" (which is blank)
@paulbevan9983
@paulbevan9983 10 жыл бұрын
Thoroughly enjoy your tutorials. Is there a way to automatically infill a cell on a prescribed date (=now()) to correspond with my direct debits in an income and expenditure spreadsheet, when my direct debit is the same amount on the same day each month through the year.
@deborahrose648
@deborahrose648 3 жыл бұрын
Thanks for the clarification, so good
@kuldevbatra2584
@kuldevbatra2584 6 жыл бұрын
Such an excellent explanation. Thanks
@mirahsenullah9973
@mirahsenullah9973 9 жыл бұрын
I noticed you auto bold the top row. I wonder if there is an option for this in Excel or something complicated.
@EZCubik
@EZCubik 8 жыл бұрын
He auto bolded all the cells at once by highlighting the cells he wanted to be bold and then simply by pressing the bold function/tab in the excel menu
@mikhosensei
@mikhosensei 4 жыл бұрын
Thank you for this video. I have been in dilemma how to join those without middle initial. Now, the problem is, I want to extract the middle initial from the middle name. Can anyone help me how to solve it? Column A - First Name Column B - Middle Name Column C - Surname
@genecymonte8007
@genecymonte8007 9 жыл бұрын
You can also use some logic in your formula. The "Logical_test" argument of the IF function sees "1" as TRUE, and a "0" as FALSE. So, if you put it like this: =IF(COUNTA(C4);CONCATENATE.. ETC..) You can get the same result.
@heyarnold1988
@heyarnold1988 7 жыл бұрын
Very helpful. Thank you.
@amlanghosh194
@amlanghosh194 5 жыл бұрын
Beutifully explained,Mr Ralph ,Thanks and Regards
@mmnldrgz642
@mmnldrgz642 4 жыл бұрын
Thank you so much for sharing =)
@seanearnest
@seanearnest 8 жыл бұрын
So helpful, thank you!
@mylovelym.1443
@mylovelym.1443 5 жыл бұрын
Pls, help me out. What is missing here =IFS(COUNTA(D2)=1,CONCATENATE(B2,"-",D2), AND Ifs(COUNTA(D2)=0,CONCATENATE(B2,"-",C2)))
@rrmessina
@rrmessina 11 жыл бұрын
great explanation! thx
@MuhammadIrfan-jv9ip
@MuhammadIrfan-jv9ip 8 жыл бұрын
very sporting for new lerners
@carlosjosedominguezleonard1837
@carlosjosedominguezleonard1837 Жыл бұрын
12 years in the future this is the only aprox video to use if with concat function. But the document I have is so scrambled I need to do at least 2 if to get a result, and I can't crack it😢
@DrClave
@DrClave 13 жыл бұрын
Thank You very useful
@viewspace7118
@viewspace7118 7 жыл бұрын
How to use concatenate with vlookup?
@lupet22
@lupet22 12 жыл бұрын
Thank you, it very good
@funnytoonss
@funnytoonss 9 жыл бұрын
thanks for help
@bongsiojo
@bongsiojo 12 жыл бұрын
Thanks!
@minadev1
@minadev1 8 жыл бұрын
Your video looks fuzzy
When Should You Use the Hash Sign in Excel Formulas?
10:53
Leila Gharani
Рет қаралды 1,1 МЛН
IF AND OR Formula in Excel with MULTIPLE CONDITIONS
17:32
Presentation Mastery
Рет қаралды 663 М.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 47 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 25 МЛН
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 685 М.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 58 МЛН
Master the IF Formula in Excel (Beginner to Pro)
11:16
Kenji Explains
Рет қаралды 557 М.
When You Should Use the New Excel LET Function
17:18
Leila Gharani
Рет қаралды 774 М.
How to use COUNTIF and COUNTIFS in Microsoft Excel
14:36
Kevin Stratvert
Рет қаралды 899 М.
Excel TEXTJOIN, CONCATENTATE and CHAR Functions to Join Text
6:27
Chris Menard
Рет қаралды 16 М.
I 💓 GETPIVOTDATA and why you should too!
7:28
MyOnlineTrainingHub
Рет қаралды 74 М.
Excel | Basic Symbols in Formulas
5:44
The Computer Workshop
Рет қаралды 3,1 М.
Excel Functions: AND(), OR() within IF()
7:30
Six Minutes. Smarter.
Рет қаралды 574 М.
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 47 МЛН