You are really the gem of a guy when it comes to describe things concerning excel or vba. Thanks a trillion for this video.
@BOWENSblog4 жыл бұрын
learning how to do some VBA is actually a good way to climb the corporate ladder in non-technology roles. Thanks for coaching people online and supporting productive talent. Technology is getting better these days. Good thing VBA will never be replaced in the next 20 years. It can assist in administrative work, repetitive work, improve critical thinking skills(like academic, and application) and saves time
@kickilicoff2 жыл бұрын
I have been searching around internet the whole day, and this video explains it all! Thank you!
@jlpayne0527103 жыл бұрын
Jon, I really appreciate your videos they are amazing. Too many times I find that excel videos are all just veiled sales pitches. I also appreciate that they are easy to follow and not too fast Thanks
@Bebicsek4 жыл бұрын
This video with the R1C1 formula setting just saved my night :-) Thanks!
@OttawaRocks4 жыл бұрын
Excellent video. I was absolutely hunting for a formula creator within a VBA environment and this does the trick!
@Revlemmon4 жыл бұрын
Thank you for this video, it was a godsend!! I have huge formulas that I needed to write with VBA and had no idea how to do it until I watched this video.
@francisaranha29 күн бұрын
Loved this explanation!! Thanks a ton!!
@divinorodriguesdasilva50482 жыл бұрын
Excellent video!
@Juanksv096 жыл бұрын
Excellent, clear explanations and pristine video and audio. Thanks!
@suavesergio3 жыл бұрын
Thank you John, for sharing this kind of tips with us. They´re very useful!
@randomCADstuff3 жыл бұрын
The last time was exactly what I was looking for and very well explained! Thank-you!!
@augustodemelo9153 жыл бұрын
Excellent!!! It is exactly what I was looking for!!! Thank you so much!!!
@gokul83702 жыл бұрын
SO GOOD! Helped me lot! Thumbs up and Subbed as well.
@stuartmuscroft37534 жыл бұрын
wow...GENIOUS!!! I am truly grateful, thank you
@dottied55963 жыл бұрын
This helped so much! Thank u!!
@rajeevdixit70193 жыл бұрын
You are amazing tracher of vba
@smrenterprises5892 жыл бұрын
Thanks a lot . It's perfect
@yosef-yosef94145 ай бұрын
Very helpful and useful for me Excel Master
@olibolivar72235 жыл бұрын
Just what I needed.Thank you sir! :D
@ChollyMc Жыл бұрын
Well done! Thank you!!!
@ExcelCampus Жыл бұрын
You're welcome, Charles! 😀
@jgg5185 жыл бұрын
Very Helpful Video
@strosa24064 жыл бұрын
too useful .. thanks jon
@Pankaj-Verma-4 жыл бұрын
Thanks for the kind help.
@fundip432 жыл бұрын
I was trying over and over to find a re-record function of marcos . Specially when I don’t know how to write formulas in excel well let alone vba. so to use a second writing macro to record the steps to copy into a macros vba is really straight forward .
@shavkatpulatov52032 жыл бұрын
it was great! full desription to clear, thanks a lot, but I'd like also to kwon how to replace the "spread sheetname " with variables thanks in advance
@abhi2k685 жыл бұрын
At 1:11 I made up my mind that I will Like & download this video!
@mobr.6 жыл бұрын
Very clear and informative video. Thank you.
@kopobinang69283 жыл бұрын
Thank You!
@jgojiz6 жыл бұрын
Amazing explanation many thanks!
@irynamusiiovska8286 жыл бұрын
Thanks for your video.
@paultc164 жыл бұрын
Nice Video
@nadermounir82283 жыл бұрын
Thank you John for the VBA tips. I wonder how to write a formula using VBA where a sheet name is used and this sheet can change at anytime. So say Range("A1").Formula = "='Product DataBase'!D2". Product database is the sheet name but what if someone changes the sheet name? How can this be made dynamic ? Any idea ?
@magibis75196 жыл бұрын
this is really wonderful video. i have question. everyday data are not same how to do vlookup in vba dynamically.
@samsammito1685 жыл бұрын
Hi Jon, I'm trying to use variables with the formula property can you share an example?
@kumarrohit85384 жыл бұрын
Superb
@debbie60855 жыл бұрын
Hi Jon, Thank you for another one of your great videos. I've just tried to sign up to the 7 Steps to Getting Started with Macros and VBA, but when I entered the time zone of Perth Australia, it prompted for a date but didn't allow one to be entered. Can you please help me with this as I'm keen to view the video? Thank you.
@sasavienne5 жыл бұрын
Nice. Thanks...
@PhilipHubbe3 жыл бұрын
Hey Jon, I am trying to insert a formula that is giving me a compile error. (expected end of statement) formula = "=CONCATENATE( "BILL OF MATERIAL:" , Mid(CELL( "Filename", A1), Find( "]", CELL( "Filename", A1)) + 1, 255))" Any Ideas?
@microsecure26125 жыл бұрын
thank you very much for this video very helpful .... i have a question please: 1- i have this formula: =IF(Sheet1!$B$15=Sheet4!B8,Sheet1!$B$14,"£0.00") and it works fine with your video tutorial but the cell does not show the sign (£) 2- how to tell Macro to move to the next cell with the same formula Many thanks
@TheArifbmc10 ай бұрын
my formula is only to find cell position using match formula. then i can use it to define where i will paste a value from B7 to H* Range("B7").Select Application.CutCopyMode = False Selection.Copy cell= .formula = "=MATCH(A7;$G:$G;0)" Range("H" & cell).Select ActiveSheet.Paste but this not working. please advise
@frankcornfield59152 жыл бұрын
Does anyone know how to insert a formula into a vertical range? As the example from above with the range B10 to B30
@hoggrobinson6 жыл бұрын
beauriful
@flying_horse4 жыл бұрын
Hi , I am trying to write a formula that uses a range ( it's a countif formula ) Thing is I don't want to define the range myself . But even if I have it defined by a variable set as a range , it wont work Any tips ?
@avb6programminguser7766 жыл бұрын
Good for VBA programming and VB6 programming
@abdulsafwan7114 жыл бұрын
How can I hide the formula and show only values
@mithiladas24815 жыл бұрын
my sheet1 B10 value is 298263 after adding formula"=sum(B4:B9)" i want to add a formula in B10 with existing value "298263" Example: Range("B10").Formula = "=SUM(B4:B9)+298263" Every time this formula change the existing value which is exist in B10 Cell. How can i do that?
@prashant_karna2 жыл бұрын
Activecell.formular1c1="=sum(a18:r[-1]c)" Sir please check what is wrong with this formula
@Dopeboyz7895 жыл бұрын
What if i dont wanna see the formula
@masonharper46103 жыл бұрын
Excel adds "@" in front of the formula and it does not work. A different version of excel?
@ElGordoFreeman5 жыл бұрын
There is a third condition of the formula property, the formula name must be in English with commas as list separators. If you have a spanish Excel and you want to use the local name, SUMA instead of SUM, you have to use the FormulaLocal property. Obviously, if you want a more versatil code, use the Formula property.