lookat=xlwhole

  1. L

    Code only running once then error 91 with block error

    I get an error when running this code a second time. If I copy the word 'Changed' from the field header in the workbook and paste it in the FS14 = "Changed" line it will run ok again one time, then errors out again. Line erroring out is the MsgBox Rng14.column line. Sub DDD() Dim lri As Long...
  2. A

    find function

    I'm trying to limit the range using Columns("A18:A" & LRow) , however i'm getting an error. The below code works fine, however I'm wondering is it not possible to limit the range from a specific row? , SearchRange As Range LRow as long LRow = Range("A" & Rows.Count).End(xlUp).Row Set...
  3. T

    Column reference

    I have the following code that I'm using to try and count colour fill of cells in a specified range on another worksheet, and I can't get it to quite work how I want. The code that I can get working how I want is this: twowk = Sheets("PROD").Range("2:2").Find(What:="2WK GATE DATE"...
  4. M

    Excel VBA Range.Find

    Hi. I was hoping someone could point out where I have gone wrongwith this one. I have a value of “0” in cell A5 and a value of “2500” incell A55. I’m using VBA to draw a vertical line from A5 to A55. I then want to draw a line to intersect the vertical line bymatching a value in Cell M4...
  5. K

    Hyperlink to run macro does not run

    I have the following hyperlink in sheet named 'Process' in cell B34: Text to Display: CLICK HERE TO PERFORM THE FOLLOWING: Type the cell reference: B34 The macro code is: Private Sub Workbook_SheetFollowHyperlink(ByVal Sh As Object, ByVal Target As Hyperlink) If Target.Range.Address = "$B$34"...
  6. W

    unpopulated blank cells

    Sometimes when working with what looks like cells that look blank they have hidden "0" in it. That messes with formulas at times. So I thought to scrub the worksheet for cells with non visible characters and set them all to the same one. So what I like to know is what state is a new unused cell...
  7. N

    Do while loop

    I am hoping someone can help, I am trying to add a 'do while' type loop into some existing code. The current code makes manual changes to my data dump but it can only do one row at a time. Sometimes there are a large amount of rows which all need the same adjustment made to them so i need the...
  8. A

    Two dimensions: collection or dynamic array

    Hello guys, I need a little help. I have written a piece of code in order to perform massive replacement in the entire workbook. Sub fdfd() Dim SheetCounter As Integer Dim RowCounter As Integer Dim ColumnCounter As Integer For SheetCounter = 1 To ThisWorkbook.Sheets.Count...
  9. A

    Error With WorksheetFunction Sum

    What could be causing an "Unable to get the Sum property of the WorksheetFunction class" error with this line in red? eqt_stcol = .Rows(2).Find(What:=UserForm1.uf1cbx2_eqt.Value, LookIn:=xlValues, LookAt:=xlWhole, MatchCase:=False).Column etotal_col =...
  10. S

    Syntax?

    Oh oh, what I do wrong? I am on a sheet. On a second sheet I want to define a range, and do a search in that range... Set c = Worksheets("CONFIGURATIONS").Range("A2", Cells(ActiveCell.End(xlDown).Row, ActiveCell.End(xlToRight).Column)).Find(Worksheets(ActiveSheet.name).Cells(1...
  11. M

    vba object variable or with block variable not set (How to move on???)

    Hello, I'm only trying to have the macro move on to the next (Selection.Find) if no value is found instead of crashing Please help. thank you! Sheets("Funded Bankwide").Select Columns("A:A").Select Selection.Find(What:="Inside Sales", After:=ActiveCell, LookIn:=xlFormulas, _...
  12. S

    Searching for value using InputBox

    I’m trying to search for a specific value in a list.This code looks for zeroes and it works Selection.Find(What:="0.00 ", After:=ActiveCell, LookIn:=xlValues, _ LookAt:=xlWhole, SearchOrder:=xlByColumns, SearchDirection:=xlNext, _ MatchCase:=False, SearchFormat:=False).Activate...
  13. D

    Simplify Code

    I am currently use code like the one below to assign column numbers based on the column header title. Unfortunately there can be 30+ headings which takes some time to write code for, I was wondering if there was a quicker way of doing this or if possible shorten the code i already use? Any help...
  14. N

    Find and replace formulas with vba

    I am trying to use find and replace to replace one formula with another. When I use my code with words in the string it works: Sub new() Cells.Replace What:="Hej", _ Replacement:="Farvel", LookAt:=xlWhole, SearchOrder:= _ xlByColumns, MatchCase:=False, SearchFormat:=False...
  15. B

    how to deal with offset

    <colgroup><col width="64" span="2" style="width:48pt"> </colgroup><tbody> A 14 B 16 C 68 D 0 E 32 F 25 G 25 H 55 </tbody> Sub using_the_resize_property_to_change_thesizeofRangeMethod1() Set Rng = Range("B1:B15").Find(what:="0"...

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top