Forum

Purfleet
@purfleet
Reputable Member
Joined: Dec 20, 2019
Topics: 0 / Replies: 412
Reply
RE: If Formula for Multiple Criteria.

Can you add a sample worksheet, as the above doesnt make a lot of sense to me. =IF($F9=$AB$4:$BV$4,$Y9,"") looks like an array formula (so Ctr...

6 years ago
Reply
RE: Delete , Cut , Paste with criteria

Okay, so the below code will copy the cells from the selected row as ask you to type in a destination row number Sub CutNPasteSelectedRow() Dim ...

6 years ago
Forum
Reply
RE: How to copy the formula from the 1st cell to the end of the entire row which has data?

not sure what your data looks like, but you seem to be counting the rows in column F with LastRow = Cells(Rows.Count, "F").End(xlUp).Row 'the "a" i...

6 years ago
Forum
Reply
RE: In Need of Assistance with this data in excel

Looks like the data has been input in 2 different formats - rows 2 to 5498 show (for example) 999-04-0558 but the number is really 999040558. The seco...

6 years ago
Reply
RE: Expand Excel Accumulator to more Columns

The above code takes the number entered in A1 and adds it to the value in B1 - so the first time you input 2 in A1, a1 will show 2, then you input 10 ...

6 years ago
Forum
Reply
RE: How to copy the formula from the 1st cell to the end of the entire row which has data?

For a variable length column you can add a variable like the below then use that as part of the range Sub LastRowX() Dim LastRow As Long La...

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

Assuming you want to just delete the contents of the cells? Sub DeleteSelectedInRow() Dim r As Long Dim ColsCount As Long ColsCount = S...

6 years ago
Forum
Page 28 / 28