Step to Create a Basic Macro:
1)open up a new book, bring up the Developer tab (If you don't have the Developer tab, you can go to File, Options, Customize Ribbon and makes sure that the Developer tab is selected.)
2)open VBE editor (Developer -> Visual Basic or ShortcutKey: ALT+F11)
3)Add Module (Insert -> Module, Module is nothing but a workspace to writer our code)
4)Write/copy below code in Module workspace and click on RUN(F5)/PLAY option
Sub MyFirstMacro()
MsgBox "Welcome to MYTECHIE EXPERT BLOG"
End Sub
5)You'll get "Welcome to MYTECHIE EXPERT BLOG" output in message box
What exactly is the difference between programming and coding? The other day, one of my friends who is not from a computer science background, asked me this question. Even after learning many different programming languages and doing several projects, I could not answer him correctly. I said both are the same. But why do we use two different terms, if both are the same? That led me to some research, and I thought I’d share what I found. It’s not that complicated. And their definitions allow for a lot of overlap. We often recognize the terms coding and programming as synonymous because both are often used interchangeably. what is the difference between programming and coding? Coding is the act of expressing programmatic ideas in computer language. Programming is crafting ideas that can be executed repeatedly by a machine, not necessarily a computing device. While both the terms are synonymous with each other and are often used interchangeably, t...
Comments
Post a Comment
We appreciate your valuable Suggestions/Feedback