Need some help to automate a laborious process please

Steven0605

New Member
Joined
Aug 1, 2017
Messages
3
Hi all, I'm not sure if this is possible but I'm looking for some help to automate a process that I have to repeat week in week out on numerous spreadsheets. Let me explain how I currently do things:

Each week I get long spreadsheets full of data, these spreadsheets are always the same layout. I need to put separate if formulas into column S and column T, a calculation formula into column U and then a vlookup formula into columns V,W,X,Y. I then drag these formulas down to the bottom of the spreadsheet, circa 80k lines)

I then use conditional formatting to either highlight the rows in a different colour or to change the font colour in the row based on the results of the formulas I've used in columns S, T, U & V.

I guess what I'm asking is whether it is possible in any way to automate at least some of this rather repetitive process into a macro or a VBA button that could insert the formulas into the appropriate columns, and maybe even do the conditional formatting?

Many thanks in advance for any help.
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Not knowing what the formulas are or what row you start them in I'd suggest you use the built in Macro Recorder and let Excel create a macro that you can study and learn from. Even post to the forum for assistance if need be.
 
Upvote 0
I can't help with the conditional formating, but as far as inserting formulae, have a look at this
Code:
Sub AddFormulae()

    Dim UsdRws As Long

    UsdRws = Cells.Find("*", After:=Range("A1"), SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row

    Range("S2:S" & UsdRws).Formula = "=R2+M2"
    
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,167
Messages
6,123,401
Members
449,098
Latest member
ArturS75

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