This video introduces the creation of macros in Excel using VBA. The intro is oriented towards engineers and is part of a course I teach in an online Masters program. The program is described at ht...
This video introduces the creation of macros in Excel using VBA. The intro is oriented towards engineers and is part of a course I teach in an online Masters program. The program is described at http://mepp.engr.wisc.edu and high res versions of this and other videos is available at http://blanchard.ep.wisc.edu There is also a demonstration video on the same topic at the same site.
Like to rate videos and let people know what you think?
Automatically share your ratings, favorites, and more on Facebook, Twitter, and Google Reader with YouTube Autoshare.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
Like to share videos with friends?
Automatically share your ratings, favorites, and more on Facebook, Twitter, and Google Reader with YouTube Autoshare.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
This video has been removed from your Favorites. (Undo)
Like to Favorite videos and let people know what you think?
Automatically share your ratings, favorites, and more on Facebook, Twitter, and Google Reader with YouTube Autoshare.
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
stai leggendo la catena di osiris..un demone si è impossessato di una bambina se non scrivi questo messagio in altri 5 video in tre minuti la bambina/demone stara nella tua stanza stanotte (Scusate ma l'hanno fatto a me perciò...)
checker = 0 For Each thing In Selection checker = 1 - checker thing.Value = checker Next End Sub
This is the code I made for a checkerboard, in the speadsheet, it looks like 1's and 0's. I need away to incorporate Red (colorindex 3) instead of the number 1. And replace Black (colorindex 1) instead of the number 0. I want to make a red and black checkerboard on the spreadsheet. How can I replace the number code with the color code formula?
Sub checkers() boardsize = 13 For i = 1 To boardsize For j = 1 To boardsize If (i + j) Mod 2 = 0 Then Cells(i, j).Interior.ColorIndex = 3 Else Cells(i, j).Interior.ColorIndex = 1 End If Next Next End Sub
how can I change 1's and 0's to Red and Black in the macro module? This is the code I made for looping a checkerboard design, checker = 0 For Each thing In Selection checker = 1 - checker thing.Value = checker Next End Sub
how can i convert numbers into colors from the module sheet?
Autoshare makes certain YouTube activities public on the services you choose. Select only the services you are comfortable with - like Facebook, Twitter, or Google Reader - to let your friends know what you like on YouTube. You can turn Autoshare off at any time.
For Each thing In Selection checker = 1 - checker thing.Value = checker
Next
End Sub
This is the code I made for a checkerboard, in the speadsheet, it looks like 1's and 0's. I need away to incorporate Red (colorindex 3) instead of the number 1. And replace Black (colorindex 1) instead of the number 0. I want to make a red and black checkerboard on the spreadsheet. How can I replace the number code with the color code formula?
Sub checkers()
boardsize = 13
For i = 1 To boardsize
For j = 1 To boardsize
If (i + j) Mod 2 = 0 Then
Cells(i, j).Interior.ColorIndex = 3
Else
Cells(i, j).Interior.ColorIndex = 1
End If
Next
Next
End Sub
This is the code I made for looping a checkerboard design,
checker = 0
For Each thing In Selection checker = 1 - checker thing.Value = checker
Next
End Sub
how can i convert numbers into colors from the module sheet?
This is yellow.
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 65535
End With