Featured
BTM Layout 1st Stage, Bangalore, India - 560076.
1
Details verified of Vijayakumar A✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Tamil Mother Tongue (Native)
English Proficient
MKU Pursuing
Master of Computer Applications (M.C.A.)
Bharathidasan University 1998
Bachelor of Computer Science (B.Sc. (Computer Science))
BTM Layout 1st Stage, Bangalore, India - 560076
ID Verified
Phone Verified
Email Verified
Report this Profile
Is this listing inaccurate or duplicate? Any other problem?
Please tell us about the problem and we will fix it.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Microsoft Excel Training classes
20
Teaches following Excel features
Advanced Excel, Basic Excel
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in MS Word Training
20
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Microsoft PowerPoint Training classes
20
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in MS Office Software Training
20
Teaching Experience in detail in MS Office Software Training
Computer Basics MS Word Basics MS Excel Basics MS PowerPoint Basics
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Computer Classes
20
Type of Computer course taken
Basics of Computer usage, Training in Computer tools usage, Training in Software application usage
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Microsoft Power BI classes
10
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Google Cloud Platform
10
1. What Excel features do you teach?
Advanced Excel and Basic Excel
2. Which classes do you teach?
I teach Computer, Google Cloud Platform, MS Office Software Training, MS Word, Microsoft Excel Training, Microsoft Power BI and Microsoft PowerPoint Training Classes.
3. Do you provide a demo class?
Yes, I provide a free demo class.
4. How many years of experience do you have?
I have been teaching for 20 years.
Computers have come a long way and have changed technology and society over the decades. Here’s a brief history of computers Pre-20th Century Abacus (3000 BC): One of the first computing devices...
Answered on 03 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
Answered on 02 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
Follow these simple steps to write a macro in Excel VBA.
1. Open Excel and press Alt + F11 to open the Visual Basic for Applications (VBA) editor
2. To do this, in the VBA editor go to `Insert` > `Module`, and enter a new module.
3. We Write VBA Code To Define The Macro In Module Window For example:
***vba
Sub MyMacro()
' Your VBA code here
End Sub
***
4. Now you are free to write your VBA code within the Sub. End Sub to the above block will carry out in Excel what you have demanded our Macros/RPA programs.
5. You can run the macro by hitting F5 in VBA editor or close the editor, and running it from Excel >> Developer Tab >> Macros>> select utsname & click Run.
6. Save your excel file type as "Excel Macro-Enabled Workbook"
Answered on 02 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
Learning how to write macros in MS Excel can be a valuable skill. Here are some recommended steps to help you learn how to write macros effectively.
Excel Macro Recorder: Start by using the Excel Macro Recorder to record simple macros as you perform tasks in Excel. This will help you understand how actions in Excel translate to VBA code.
Online Tutorials and Courses: There are many online tutorials and courses available that cover Excel VBA programming. Websites like Microsoft Excel support, Excel Easy, VBA Express, and various YouTube channels offer tutorials for beginners to advanced users.
Books: There are several books dedicated to Excel VBA programming that can provide structured learning and in-depth knowledge. Some popular ones include "Excel VBA Programming For Dummies" by Michael Alexander and John Walkenbach.
Practice: Practice is key to mastering Excel VBA. Try to write small macros to automate tasks and gradually increase the complexity as you become more comfortable with VBA syntax and concepts.
Community Forums: Engage with online communities like Stack Overflow, Excel forums, and Reddit's r/excel to ask questions, seek advice, and learn from others who are experienced in Excel VBA programming.
Experimentation: Don't be afraid to experiment and explore different VBA functions and features. Learning by doing can be an effective way to discover new ways of automating tasks in Excel.
MS Excel Documentation: Microsoft's official documentation can also be a valuable resource for learning Excel VBA. The Excel VBA Object Model and Function Reference provide detailed information on objects, methods, properties, and functions available in Excel VBA.
By combining these resources and approaches, you can gradually build your skills in writing macros in MS Excel and become proficient in automating tasks and enhancing your productivity in Excel.
Answered on 02 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
Learning how to write macros in MS Excel can be a valuable skill. Here are some recommended steps to help you learn how to write macros effectively.
Excel Macro Recorder: Start by using the Excel Macro Recorder to record simple macros as you perform tasks in Excel. This will help you understand how actions in Excel translate to VBA code.
Online Tutorials and Courses: There are many online tutorials and courses available that cover Excel VBA programming. Websites like Microsoft Excel support, Excel Easy, VBA Express, and various YouTube channels offer tutorials for beginners to advanced users.
Books: There are several books dedicated to Excel VBA programming that can provide structured learning and in-depth knowledge. Some popular ones include "Excel VBA Programming For Dummies" by Michael Alexander and John Walkenbach.
Practice: Practice is key to mastering Excel VBA. Try to write small macros to automate tasks and gradually increase the complexity as you become more comfortable with VBA syntax and concepts.
Community Forums: Engage with online communities like Stack Overflow, Excel forums, and Reddit's r/excel to ask questions, seek advice, and learn from others who are experienced in Excel VBA programming.
Experimentation: Don't be afraid to experiment and explore different VBA functions and features. Learning by doing can be an effective way to discover new ways of automating tasks in Excel.
MS Excel Documentation: Microsoft's official documentation can also be a valuable resource for learning Excel VBA. The Excel VBA Object Model and Function Reference provide detailed information on objects, methods, properties, and functions available in Excel VBA.
By combining these resources and approaches, you can gradually build your skills in writing macros in MS Excel and become proficient in automating tasks and enhancing your productivity in Excel.
Answered on 02 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
You would learn how to input the value from a cell into macro in Excel VBA following the example/information.
1. Define a variable in the macro to hold cell value This is how you can get the cell value by using `Range` object For example:
***vba
Sub MyMacro()
Dim cellValue As Variant
' Assign the cell value to a variable
cellValue = ThisWorkbook. Sheets("Sheet1"). Range("A1"). Value
' Your code using the cell value ' here
End Sub
***
In In This Example, The Value Of Cell A1 From Sheet 1 Is Saved To `cellValue` Variable.
2. This will give you a simple template that sets cellValue equal to the value of the currently selected Cell, which you can then use in other VBA code for calculations or whatever else based on what's actually written into this particular Cell.
3. You can run the macro by hitting F5 in VBA editor or close the editor, and running it from Excel >> Developer Tab >> Macros>> select utsname & click Run.
4. Save your excel file type as "Excel Macro-Enabled Workbook"
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Microsoft Excel Training classes
20
Teaches following Excel features
Advanced Excel, Basic Excel
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in MS Word Training
20
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Microsoft PowerPoint Training classes
20
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in MS Office Software Training
20
Teaching Experience in detail in MS Office Software Training
Computer Basics MS Word Basics MS Excel Basics MS PowerPoint Basics
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Computer Classes
20
Type of Computer course taken
Basics of Computer usage, Training in Computer tools usage, Training in Software application usage
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Microsoft Power BI classes
10
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Google Cloud Platform
10
Answered on 03 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
Answered on 02 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
Follow these simple steps to write a macro in Excel VBA.
1. Open Excel and press Alt + F11 to open the Visual Basic for Applications (VBA) editor
2. To do this, in the VBA editor go to `Insert` > `Module`, and enter a new module.
3. We Write VBA Code To Define The Macro In Module Window For example:
***vba
Sub MyMacro()
' Your VBA code here
End Sub
***
4. Now you are free to write your VBA code within the Sub. End Sub to the above block will carry out in Excel what you have demanded our Macros/RPA programs.
5. You can run the macro by hitting F5 in VBA editor or close the editor, and running it from Excel >> Developer Tab >> Macros>> select utsname & click Run.
6. Save your excel file type as "Excel Macro-Enabled Workbook"
Answered on 02 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
Learning how to write macros in MS Excel can be a valuable skill. Here are some recommended steps to help you learn how to write macros effectively.
Excel Macro Recorder: Start by using the Excel Macro Recorder to record simple macros as you perform tasks in Excel. This will help you understand how actions in Excel translate to VBA code.
Online Tutorials and Courses: There are many online tutorials and courses available that cover Excel VBA programming. Websites like Microsoft Excel support, Excel Easy, VBA Express, and various YouTube channels offer tutorials for beginners to advanced users.
Books: There are several books dedicated to Excel VBA programming that can provide structured learning and in-depth knowledge. Some popular ones include "Excel VBA Programming For Dummies" by Michael Alexander and John Walkenbach.
Practice: Practice is key to mastering Excel VBA. Try to write small macros to automate tasks and gradually increase the complexity as you become more comfortable with VBA syntax and concepts.
Community Forums: Engage with online communities like Stack Overflow, Excel forums, and Reddit's r/excel to ask questions, seek advice, and learn from others who are experienced in Excel VBA programming.
Experimentation: Don't be afraid to experiment and explore different VBA functions and features. Learning by doing can be an effective way to discover new ways of automating tasks in Excel.
MS Excel Documentation: Microsoft's official documentation can also be a valuable resource for learning Excel VBA. The Excel VBA Object Model and Function Reference provide detailed information on objects, methods, properties, and functions available in Excel VBA.
By combining these resources and approaches, you can gradually build your skills in writing macros in MS Excel and become proficient in automating tasks and enhancing your productivity in Excel.
Answered on 02 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
Learning how to write macros in MS Excel can be a valuable skill. Here are some recommended steps to help you learn how to write macros effectively.
Excel Macro Recorder: Start by using the Excel Macro Recorder to record simple macros as you perform tasks in Excel. This will help you understand how actions in Excel translate to VBA code.
Online Tutorials and Courses: There are many online tutorials and courses available that cover Excel VBA programming. Websites like Microsoft Excel support, Excel Easy, VBA Express, and various YouTube channels offer tutorials for beginners to advanced users.
Books: There are several books dedicated to Excel VBA programming that can provide structured learning and in-depth knowledge. Some popular ones include "Excel VBA Programming For Dummies" by Michael Alexander and John Walkenbach.
Practice: Practice is key to mastering Excel VBA. Try to write small macros to automate tasks and gradually increase the complexity as you become more comfortable with VBA syntax and concepts.
Community Forums: Engage with online communities like Stack Overflow, Excel forums, and Reddit's r/excel to ask questions, seek advice, and learn from others who are experienced in Excel VBA programming.
Experimentation: Don't be afraid to experiment and explore different VBA functions and features. Learning by doing can be an effective way to discover new ways of automating tasks in Excel.
MS Excel Documentation: Microsoft's official documentation can also be a valuable resource for learning Excel VBA. The Excel VBA Object Model and Function Reference provide detailed information on objects, methods, properties, and functions available in Excel VBA.
By combining these resources and approaches, you can gradually build your skills in writing macros in MS Excel and become proficient in automating tasks and enhancing your productivity in Excel.
Answered on 02 Jul Learn IT Courses/MS Office Software Training/Microsoft Excel Training/Excel VBA & Macro Training
You would learn how to input the value from a cell into macro in Excel VBA following the example/information.
1. Define a variable in the macro to hold cell value This is how you can get the cell value by using `Range` object For example:
***vba
Sub MyMacro()
Dim cellValue As Variant
' Assign the cell value to a variable
cellValue = ThisWorkbook. Sheets("Sheet1"). Range("A1"). Value
' Your code using the cell value ' here
End Sub
***
In In This Example, The Value Of Cell A1 From Sheet 1 Is Saved To `cellValue` Variable.
2. This will give you a simple template that sets cellValue equal to the value of the currently selected Cell, which you can then use in other VBA code for calculations or whatever else based on what's actually written into this particular Cell.
3. You can run the macro by hitting F5 in VBA editor or close the editor, and running it from Excel >> Developer Tab >> Macros>> select utsname & click Run.
4. Save your excel file type as "Excel Macro-Enabled Workbook"
Computers have come a long way and have changed technology and society over the decades. Here’s a brief history of computers Pre-20th Century Abacus (3000 BC): One of the first computing devices...
Share this Profile
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.
Certified
The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.