Skip to content

Instantly share code, notes, and snippets.

View codyhowarth's full-sized avatar
🏠
Working from home

Cody Howarth codyhowarth

🏠
Working from home
View GitHub Profile
@codyhowarth
codyhowarth / sampleREADME.md
Created February 1, 2020 23:56 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

@codyhowarth
codyhowarth / CellAccumulator.vbs
Created August 21, 2018 20:09
Accumulates the values of cells in an excel worksheet - based on worksheet change
Private Sub Worksheet_Change(ByVal Target As Range)
Dim i As Integer
Dim j As Integer
Offset = 10 'The distance between your input column and output column (missing -> frequency) change if you need to
For i = 3 To 10 '3 here is the beginning row, 10 is the end row -> change accordingly
For j = 2 To 5 '2 here is the beginning column (B), 5 is the end column (E) -> change accordingly
If Not Intersect(Target, Cells(i, j)) Is Nothing Then
missingVal = Cells(i, j).Value
@codyhowarth
codyhowarth / README.md
Created October 28, 2015 17:58 — forked from hofmannsven/README.md
My simply Git Cheatsheet