Dale's Take

Everything is open for discussion…

  • General
  • Social Policy
  • Psychology
  • Science & Tech
    • Mathematics
  • Programming
    • VBA – Excel
    • HTML / CSS / JS
    • PHP / WordPress
    • R for Statistics
    • MySQL
    • PowerShell
    • Git & github
  • Life
    • Employment
    • Trips
    • Events
    • Books
    • Movies
    • Self defense
    • Projects

VBA – Excel

ProgrammingVBA - Excel

VBA – Excel – Determine and set data range

November 4, 2021 dradma

Use: Function LastRowInt(InWS As Worksheet) As Integer LastRowInt = InWS.UsedRange.Find(What:=”*”, After:=InWS.Cells(1, 1), Lookat:=xlPart, _ LookIn:=xlFormulas, SearchOrder:=xlByRows, SearchDirection:=xlPrevious, _ MatchCase:=False).Row End

Read more
ExcelProgrammingSoftwareVBA - Excel

VBA – Excel – Tips on Learning VBA

August 26, 2017 dradma

Every now and again I am asked what is the best method to learn VBA. On this topic here are

Read more
ProgrammingVBA - Excel

VBA – Excel – Count the Number of Matching Words in Two Strings

June 4, 2017 dradma

Possibly useful to sort, order or compare lists of non-identical but related strings. [code language=”vb”] Public Function MatchingWordsInStrings(InString1 As String,

Read more
ProgrammingVBA - Excel

VBA – Excel – Routine to position shapes in range

February 17, 2017 dradma

Routine to position shapes in worksheet based on specified ranges. Note: Can use ‘print shape name‘ routine to create required

Read more
ProgrammingVBA - Excel

VBA – Excel – Print All Shape Names Routine

February 17, 2017 dradma

Routine to list names of shapes in specific worksheet or current workbook. Can make adjustments here to list various shape

Read more
ProgrammingVBA - Excel

VBA – Excel – Routine to Show All Worksheets (ie Make visible)

January 11, 2017 dradma

When there are a lot of hidden worksheets, making them visible one by one can be a pain. Stick this

Read more
ProgrammingVBA - Excel

VBA – Excel – Reference list

January 9, 2017 dradma

Great page on referencing pivot table ranges – shows the range selected for each selection method used http://www.globaliconnect.com/excel/index.php?option=com_content&view=article&id=154:referencing-an-excel-pivot-table-range-using-vba&catid=79&Itemid=475 Excel Chart

Read more
ProgrammingVBA - Excel

VBA – Excel – Lookup Range

November 17, 2016 dradma

Function to return a value for a specific id from a dataset with column headers in the first row (ie

Read more
ProgrammingVBA - Excel

VBA – Excel – Simple PivotTable Report

September 24, 2016 dradma

Simple PivotTable report to show basic information about PivotTables in the activework. Useful in tracking down lost PivotTables and other

Read more
MathematicsProgrammingVBA - Excel

The Lost Boarding Pass puzzle

September 21, 2016 dradma

The puzzle: One hundred passengers are about to board a plane. The first passenger lost his boarding pass and decides

Read more
Copyright © 2026 Dale's Take. All rights reserved.
Theme: ColorMag by ThemeGrill. Powered by WordPress.