You are an absolute gem. I would love to shake your hand one day and tell you that you've taught me literally everything I know about macros. You're very clear, very engaging, very chill, and always one step ahead of what we want to and need to know. A million times, THANK YOU.
@WiseOwlTutorials4 жыл бұрын
You are very welcome! Very happy to hear that you've found the videos useful and thank you for taking the time to leave a comment!
@oliverbird83207 жыл бұрын
Thank you, Dr.Wise! There is no one out there doing this educational videos. Appreciated
@donbogdala54287 жыл бұрын
Wiseowl is the best!
@sashatv1385 жыл бұрын
So funny, and so useful!!! Thank you, Andrew!
@WiseOwlTutorials5 жыл бұрын
You're welcome Alexander, thanks for watching!
@TheMelloPhan6 жыл бұрын
Changing Twilight to Terrible.... Savage.
@blakedextraze86806 жыл бұрын
Tell us what you really think of twilight lol . Great series, Thanks!
@krn142427 жыл бұрын
Thanks Andrew, very useful.
@jasmeenmalhotra22255 жыл бұрын
This is TOO MUCH FUN. Thanks for this great tute. I might even be converted from Leila. Maybe.
@johassan65094 жыл бұрын
Gharani?
@jasmeenmalhotra22254 жыл бұрын
@@johassan6509 yeah, but she's brilliant too. They're both great teachers in their own way.
@kashifkhanspecial5 жыл бұрын
Hi Andrew, How are you, I think you will be good with the grace of God, I have one request to you, could you please upload a video tutorial about, how can we use RegulaExpressions in VBA. Thanks Kashif
@chahineatallah26362 жыл бұрын
hi wiseowl, first thanks a lot, really great channel for vba, i have small question why if i dont put "ts.close " and "ts.nothing" it gives some runtime error with some permission title? is it obligatory to put ts.close and ts=nothing?
@WiseOwlTutorials2 жыл бұрын
I don't know why you're receiving an error. Closing the text stream isn't technically obligatory but it is best practice. Your object variable will automatically become Nothing when it goes out of scope. I'd suggest that closing the textstream is more important than explicitly setting it to Nothing.
@josh72977 жыл бұрын
Could I using the replace function to actually replace a whole cell reference to another cell reference. Say I have this formula in a cell reference and I want to replace a part of the formula. Do I have to use a string or can I use a cell reference?
@gisdepartment99347 жыл бұрын
One other question if you don't mind. If I export my VB to a .bas file how would I go about running that every day on a excel file that's being updated each day on my network? Could that process be automated as a startup process when I turn my computer on in the morning?
@gisdepartment99347 жыл бұрын
I will look in to that and let you know how it goes. Thanks again!
@gisdepartment99347 жыл бұрын
I'm very new to VB and trying to learn it on my own. I successfully replaced spaces with underscores on one of my cells but need to do this on the entire column. How would I go about modifying my current script. Sub ReplacingStrings() Dim s As String s = Range("I2").Value Debug.Print s s = Replace(s, " ", "_") s = Replace(s, Chr(10), "") Debug.Print s End Sub
@gisdepartment99347 жыл бұрын
That was exactly what I needed and it worked perfectly. Thank you so much for your help.