ocell

  1. S

    VBA Pulling Wrong Data from table

    I'm using the below VBA code and I want it to pull the MFR, Part No, and description but with the below code it's pulling the quantity, description, and price. It looks like the website it's pulling from is written in Java, I think this is the code for the table <tbody> <table...
  2. S

    Vba

    I've used the below is the code that I have used to pull information based off a manufacturer part #. I’m trying to use the MSC part (there are 6,000 items total but 63687313 is an actual example) pull the MFR, MFR part no and description from the following website https://www.mscdirect.com/...
  3. K

    Select Rows based on cell value

    Hi, I use this code to select all Rows that contain number 3 based on column F. The code will select the Entire Row. But what I really want is the Rows contain number 3 to be selected only until Column X, not the entire Row. How can I do that ? Sub SelRows() Dim ocell As Range Dim rng As...
  4. J

    Fast ways to grab table from HTML using VBA ?

    Hi, i found this vba script which works super fast, however it only works if there is only 1 table on the website. Sub test() Dim oDom As Object: Set oDom = CreateObject("htmlFile") Dim x As Long, y As Long Dim oRow As Object, oCell As Object Dim data y = 1: x = 1...
  5. D

    VBA Find first instance of word

    Hi, I have a column of data and every cell may or may not contain specific words, what I am trying to do is once the first instance of a word (from an array) is found then insert a column before the data column then exit completely out of the loop without looking in any other cells in the data...
  6. I

    MULTIPLY TEXT by 1: vba for multiplying text cells by 1 but do not return #VALUE!

    Using this code to get rid of extra character but then need to multiply by 1 to calculate dates correctly...I'm still actively working it... Public Sub Remove() Dim oCell As Range Range("B8:BU172").Select For Each oCell In Selection oCell.Value =...

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