Forum

Dave Morrison
@davesexcel
Active Member
Joined: Dec 21, 2018
Topics: 0 / Replies: 6
Reply
RE: Find max value criteria as combobox

You can make the range Dynamic in the code. Private Sub ComboBox1_Change() Dim rng As Range, x Set rng = Range("A1:A" & Cells(Rows.Count...

5 years ago
Forum
Reply
RE: Delete , Cut , Paste with criteria

Normally you would have the code search a range to find a criteria. If criteria is found, then do something. Attach a sample workbook showing ...

5 years ago
Forum
Reply
RE: Transpose? Not sure what to do

Sub Button1_Click() Dim c As Range, rng As Range Dim sh As Worksheet, ws As Worksheet Dim LstRw As Long, rws As Long Set sh = Sheets("Sheet1") Set ws ...

6 years ago
Reply
RE: How to Inhibit the Worksheet_SelectionChange Procedure Procedure

A.Maurizio said That said, however, immediately discarded as it is never very clever to deactivate the functions of excel; Even itself and onl...

6 years ago
Forum
Reply
RE: Delete equal debits and credits

if you want to delete rows, you can't loop through rows from the top and delete. for example, looping through rows and delete row 5, row 6 shifts up, ...

6 years ago
Forum
Reply
RE: Macro to transform System download data to column form

Your sample is all over the place, could you possibly supply a couple of rows showing your desired results?

6 years ago
Forum