Excel VBA reminders / snipbits
Consider using Collections, not arrays Use SET when assigning Objects Set InvoiceWS = ActiveWorkbook.Sheets(“Invoice”) Function InArray(arr, val) As Boolean For arrloop = LBound(arr) To UBound(arr) If arr(arrloop) = val Then InArray = True Exit Function End If Next arrloop InArray = False End Function Dim ListOfDirectors As Variant:… Read More »