📅Excel Calendar Pro: Your Solution to Stress-Free Scheduling 👉 rebrand.ly/CalendarPro_PinnedComm
@enrikekasijas7057 ай бұрын
Arrays are the sickest and hardest elements 😂❤❤❤ can't wait!!!
@ExcelForFreelancers7 ай бұрын
Great, thanks so much and I am happy to help and share
@Info-God7 ай бұрын
Once you master Array you"ll need to learn Class for arrays (dynamic classes for arrays) , then Dictionary.
@SyedMuzammilMahasanShahi7 ай бұрын
Thank you so much Randy for this amazing video.
@ExcelForFreelancers7 ай бұрын
For sure, you are very welcome Syed and thanks so much for your continued support
@Info-God7 ай бұрын
Arrays and loops are fundamental for advanced programming.
@ExcelForFreelancers7 ай бұрын
Absolutely, one of my favorites. Thanks so much for sharing
@alializadeh81957 ай бұрын
Thanks
@ExcelForFreelancers7 ай бұрын
For sure, you are very welcome
@ashokanselliah95717 ай бұрын
Thank you very much Randy Sir for the wonderful explanation on the arrays
@ExcelForFreelancers7 ай бұрын
For sure, you are very welcome and I am happy to help and share
@enrikekasijas7057 ай бұрын
Great introduction to Arrays!!!😂❤❤❤ Thank you ❤
@ExcelForFreelancers7 ай бұрын
Thank you so very much, I really appreciate that and glad you enjoyed the training.
@designexperience7 ай бұрын
Thank you Randy I'll try them...
@ExcelForFreelancers7 ай бұрын
For sure, you are very welcome and happy to help and share
@mansoormohammed87187 ай бұрын
I subscribed and purchased one of your courses. You have a lot to give. You are an example of an individual who loves doing good and helping others. Congratulations on your wonderful soul
@ExcelForFreelancers7 ай бұрын
Thank you so very much, I really appreciate that and I am really glad you enjoy the content and courses.
@ElectromecanicaIndustrial7 ай бұрын
Learning arrays to optimize my VBA code
@Info-God7 ай бұрын
You must be very well organized from very begining to be able to use arrays. That's the trick.
@ExcelForFreelancers7 ай бұрын
Great, thanks so much. I am happy to help and share
@andrewt2077 ай бұрын
Excellent run through. I need to have a play with Arrays in VBA ... familiar with them in C/Python so this should be interesting. One question (I'm probably being dim) - in Sub DynamicBoundsArray(), why is the RowNumb = 34? The array is length 30, first (Excel) row 4 and last 33 (so not a +1 because it is zero to ...) why isn't it 33 as this is the final row processed [RowNumb = 4 to 33]?
@ExcelForFreelancers7 ай бұрын
HI and thanks, the item in an array is counted as 0 if its not specified so therefore the rows should always be 1 more than the array value. I hope this helps and thanks so much.
@andrewmatt77315 ай бұрын
In the 2DArray example, why are we able to omit the '()' parenthesis in the 'Dim TwoDArr as Variant' line? I am thinking it has something to do with the data type, 'Variant'.
@ExcelForFreelancers5 ай бұрын
Yes that is correct, as a variant, its a much more flexible variable than the others. Strings, Long or other variables need to be specified. Thank you for your Likes, Shares & Comments. It really helps.
@pablomoreno21927 ай бұрын
Are you planning to do videos of applications that work with office scripts? There is a real need of using applications for excel for the web and also application that can be run by multiple users at the same time (vba workbooks that are used at the same time by multiple users can give errors), and office scripts is the tool to avoid these inconveniences
@ExcelForFreelancers7 ай бұрын
Hi and thanks. I would love to for sure, however Office Scripts are nowhere near being ready for that. For example worksheet/workbook change events and selection events do not exist in scripts as of yet, so as soon as the power is up to the VBA level I will be creating videos for scripts aw well. I hope this helps and thanks so much.
@akkintouch7 ай бұрын
Thanks Randy as always great content. Possible to explain the filter array in Patreon?
@ExcelForFreelancers7 ай бұрын
Thanks so much. Yes its certainly possible. I checked it out and seemed a bit complicated for one of our Basic VBA tutorials but I will try to get it added into one of the more advanced lessons. Thanks for your continued support over the years.
@henkvinck8887 ай бұрын
amazing video THNX Randy
@ExcelForFreelancers7 ай бұрын
Thank you so very much, I really appreciate that and glad you enjoyed the training
@Info-God7 ай бұрын
Dictionaries are another type of arrays. Listarrays is another powerful type of arrays.
@ExcelForFreelancers7 ай бұрын
Absolutely, thanks so much for sharing
@meka8117 ай бұрын
Thank for you Randy for this excellent Video, I enjoyed learning about arrays,, but I am about to ask a crazy question,,, what font do you use for your vba coding?
@ExcelForFreelancers7 ай бұрын
Hi and thanks for your support. Its a nice question. I was not sure, so I had to look it up. its Arial (Western) Font Size 16. I hope this helps and thanks so much.
@vannhiem80217 ай бұрын
Great! May you make a file for QA manager in a factory 🏭
@ExcelForFreelancers7 ай бұрын
Hi and thanks so much. This would be a custom job since its very specific. If you would like some help with this, we have a group with 60,000 Excel experts who would love the opportunity to customize this for you. Please join our Excel For Freelancers Facebook Group here: bit.ly/groupexcel (if you have not done so yet) You can then create a post and mark it as a PAID JOB, along with all of the details and requirements. Our members can then contact you and decide on how to best move forward with your project. I hope this helps and thanks so much.
@venkateshreddy9927 ай бұрын
Hi sir. I have a problem in excel I have data that was downloaded from a software which is totally web based. In that excel all values are in text format including dates. If I give f2+enter that text will turn to proper date. But the problem is there are a lot of cells like in thousands. I tried converting to CSV. It works sometimes and sometimes it make the date to us format. Like 1/4/24 (1st April) will become 4th jan 24. Is there any VBA code that you can suggest to solve that issue
@ExcelForFreelancers7 ай бұрын
Hi , Thanks for your comment. It would be difficult for us to help unless we see the specific bug you are running into. Can you upload screenshots of your bug and sheet into our Excel For Freelancers Facebook Group here: bit.ly/groupexcel We have 60,000 Members who would love to help you with this. Thanks so much.
@SJGorilla2 ай бұрын
Is t it faster to use a For Next loop rather than a For Each loop? 1:09
@ExcelForFreelancers2 ай бұрын
I am not sure if its faster, however I prefer the For Next simply because of the clearly defined data set. I use for Each when I loop through objects such as Shapes, Worksheets or Workbooks. I hope this helps and thanks so much.
@Info-God7 ай бұрын
Once you master Array you"ll need to master Class for arrays (dynamic classes for arrays) , then Dictionary.
@ExcelForFreelancers7 ай бұрын
Thanks so much for your continued support.
@Jojosmith3427 ай бұрын
PLEASE SUBSCRIBE !! SUBSCRIBE TO RANDY'S HARD WORK, THE BEST VBA TEACHER ON KZbin. Thumbs up 👍to his passion & dedication to teach. Thanks Randy for another excellent, valuable tutorial. God bless you!
@ExcelForFreelancers7 ай бұрын
Thank you so very much, I really appreciate that Jojo, so very kind of you. Thank you for your Likes, Shares & Comments. It really helps.