thisrow

  1. S

    Help editing this macro so it will only use amount of cells it needs for the result

    I have to set the range on this macro before I run it. If it would only create the amount of cells needed to complete the macro. It works well and will give results to multiple sheets, sometimes I'm getting millions of results that exceeds the row limitations. If I set it to Const maximum =...
  2. S

    List of all Combinations of Row with 10's of Millions of Combinations

    I've been working on this for days. I have lists of latitude longitude of 10 to 20 thousand entries. This results in 10's of millions of combinations....or more. Excel cannot handle much more than a million rows. I have been trying various methods which work as long as the result is within the...
  3. T

    How can I edit this so it does it over Many Columns

    Hi Everyone, I have this code that works great But instead of just working for column "CF" I'd like it to do the same but for "CF:CO" how can I get it to do this? Sub TestNames1() Lastrow = Sheets("Project Calendar Raw").Cells(Rows.Count, "A").End(xlUp).Row For thisRow = 2 To Lastrow...
  4. Small Paul

    Private Sub Worksheet_SelectionChange PROBLEM

    Hi Please could somebody help with an issue I am currently experiencing? I have the following code: Private Sub Worksheet_SelectionChange(ByVal Target As Range) Dim thisrow As Long If Target.Column = 3 Then thisrow = Target.Row Range("B" & thisrow) = Range("B" & thisrow)...
  5. N

    How to use a common template on my code

    So I do I set a template to have information look better? I have wrote a code that creates and renames worksheets based on my list. Each worksheet has Net operating income statements. Now I need these sheet look clean and with a common template. So how do I add a template on top of the code I...
  6. M

    Preventing auto filling VBA formula in next cell after COPY&PASTE

    Hello, I would like to ask for help with following code: Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) Dim thisRow As Long If Target.Column = 5 Then thisRow = Target.Row If thisRow > 3 Then Target.Offset(0, -1).FormulaR1C1 =...
  7. H

    Delete the whole rows that contains certain words and exact words in the column

    Hi there: I tried to delete the whole row if the column contains certain words for example if a column contain "Labor Cost", I want to delete the entire row. The macro I have only can delete exact words that I put in but I would really like to delete both exact words and contain certain words...
  8. R

    Run Time Error 13 Type Mismatch

    Hi, very new to vba and this forum, which has been very helpful. I have some code that works perfectly but always gives a 'Run Time Error 13' and stops the macro from completing. Any help please? 'Delete a row of data Dim rngSrc As Range Dim NumRows As Integer Dim ThisRow As...
  9. B

    Conditional Formatting table row based upon 1 cell value

    Hey guys- trying out conditional formatting on a table. there are about 20 columns. I want to apply simple formatting to the whole row based upon the value of 1 cell. I can do that for a single row. my conditional formatting rule looks like: =$H$30= "Closed" and currently it is applied...

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