Overview
About This Club
More Info
vba - excel programming
- What's new in this club
-
Blackmanager joined the club
-
Eliel Father joined the club
-
Wayne van Deventer joined the club
-
Udit Jangid joined the club
-
Shivakumar Reddy joined the club
-
vesta joined the club
-
Catherine Barameda joined the club
-
Michelle Aldana joined the club
-
S.Nagababu Yadav joined the club
-
KLN SriValli joined the club
-
NAVEEN KAKUMANU joined the club
-
Saloni Baldota joined the club
-
Srini Kurapati joined the club
-
Reymond Joyston joined the club
-
moulshree shukla joined the club
-
bambang budy joined the club
-
Chryssa Papamichail joined the club
-
Siya Bhandari joined the club
-
Praba joined the club
-
Joshua Biwott joined the club
-
Alkey joined the club
-
G M MANOJ joined the club
-
Flavia joined the club
-
Abigail Udo joined the club
-
Hanielle Artiaga joined the club
-
Bandaru Sudhakar joined the club
-
Segun Afolabi joined the club
-
KENAJ joined the club
-
Faisal NAUMAN joined the club
-
Paul Horsford joined the club
-
Priyadarshini Sahoo joined the club
-
Ibiso Saka joined the club
-
Amit wagh joined the club
-
Maggie joined the club
-
Patricia joined the club
-
Shweta Bhardwaj joined the club
-
irfan joined the club
-
Abhilash m joined the club
-
SamP joined the club
-
Beniphas joined the club
-
Shaimaa Ahmed joined the club
-
Abdul-Rahaman joined the club
-
hiipt joined the club
-
Jithendra Dandu joined the club
-
Anouman Colette Flore BODY joined the club
-
Joakim Otete joined the club
-
Elona Bollano joined the club
-
William9972 joined the club
-
VBA Tutorial 13 : For next Loop
Saurabh Jain commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Great Congratulations -
VBA Tutorial 13 : For next Loop
Sandeep Jain commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
-
VBA Tutorial 11 InputBox & Message Box
Sandeep Jain commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Hi Saurabh, I have completed all the 3 assignments. PFB the screenshots for reference- Exercise 1 Exercise 2 Exercise 3 -
VBA Tutorial 9 : Data Types and Variables
Sandeep Jain commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
-
Tutorial 6 : Offset Property : Excel VBA Programming
Sandeep Jain commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Hi Saurabh, Able to complete the assignment but getting confused in figuring out the correct cell range and ending up doing hit and trial . Is it possible to provide a image which shows what cell range value need to select (for both Cell & Offset) while going up, down, left and right ? -
Tutorial 6 : Offset Property : Excel VBA Programming
Sandeep Jain commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Range("D1").Offset(4, 2).Value = "Hey" -
Tutorial 5 Working with Range Object
Sandeep Jain commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Hi Saurabh, I am able to complete the assignment but when giving range in negative integer why it is not uniform. I meant, if we see code written for #2 & #6 , for# 2-> cell range is (1, 4) but for #6 -> cell range is (1, -4) whereas I expect cell range to be (1,-6). Hope you are able to understand my question ? -
Tutorial 4 : Walk through VBA Editor and your second program
Sandeep Jain commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
-
Tutorial 5 Working with Range Object
Usman commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Sub cells_example() Range("J10").Cells(1, 1).Value = "Usman" Range("J10").Cells(1, 4).Value = "Usman" Range("J10").Cells(5, 3).Value = "Usman" Range("J10").Cells(8, 1).Value = "Usman" Range("J10").Cells(3, -2).Value = "Usman" Range("J10").Cells(1, -4).Value = "Usman" Range("J10").Cells(-3, -3).Value = "Usman" Range("J10").Cells(-5, 1).Value = "Usman" Range("J10").Cells(-2, 3).Value = "Usman" End Sub -
Tutorial 5 Working with Range Object
Usman commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Range("H4").Range("B1") Output Cell is I10 -
Tutorial 4 : Walk through VBA Editor and your second program
Usman commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Assignment Done -
Tutorial 3 : Understanding Object Model : Properties and Methods
Usman commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Laptop.Make = "HP" Laptop.Color = "Grey" -
Sub word_excel_multitable() Dim xlApp As Excel.Application Dim xlBook As Excel.Workbook Dim xlSheet As Excel.WorkSheet Set xlApp = CreateObject("Excel.Application") xlApp.Visible = True Set xlBook = xlApp.Workbooks.Add Set xlSheet = xlBook.Worksheets(1) rn = 0 cn = 0 For Each t In ActiveDocument.Tables For Each r In t.Rows For Each c In r.Cells xlSheet.Range("A1").Offset(rn, cn).Value = Left(c, Len(c) - 1) cn = cn + 1 Next c cn = 0 rn = rn + 1 Next r rn = rn + 2 Next t End Sub The code has to be pasted in module of word document Set reference for Excel object library in word so that word can write in Excel Click Tool > References
-
VBA Tutorial 13 : For next Loop
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
program done. It was nice. -
VBA Tutorial 12 : Logical Test If Else Statement
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
seen entire video. -
VBA Tutorial 9 : Variables and data Types
Kashmira commented on Saurabh Jain's file in VBA Macros - Excel Programing's Files
-
Tutorial 7 : Understanding VBA Macro recording
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
fantastic. looking forward to learn more. -
Tutorial 5 Working with Range Object
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Done filling names in highlighted cell. It was interesting. -
Tutorial 5 Working with Range Object
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
The output cell is I10 -
Tutorial 3 : Understanding Object Model : Properties and Methods
Dan commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
laptop.make = "Dell" laptop.touchscreen = TRUE -
Tutorial 4 : Walk through VBA Editor and your second program
Kashmira commented on Saurabh Jain's blog entry in VBA Macros - Excel Programing's Tutorials
Done my assignment.