VBA loop through column A if has data then post formula in cells

Goldenberrys1

New Member
Joined
Jun 24, 2024
Messages
2
Office Version
  1. Prefer Not To Say
Platform
  1. Windows
Hi I have the following code

Sub Consolidate_Data_Button3_Click()

For MY_ROWS = 7 To Range("A" & Rows.count).End(xlUp).Row
If Len(Range("A" & MY_ROWS).Value) <> Len(Replace(Range("A" & MY_ROWS).Value, "Example", "")) Then
Range("S" & MY_ROWS).Formula = "=Q" & MY_ROWS & "-R" & MY_ROWS & "*0.05"
Range("T" & MY_ROWS).Formula = "=Q" & MY_ROWS & "-R" & MY_ROWS & "-S" & MY_ROWS
End If
Next MY_ROWS
End Sub

For every row from A8 onwards if it has the value "Example" I want it to post the formula in columns S and T

Basically I do not want it to have to have a value of "Example" - instead if there is any value in that column I wish for it to do the formulas in S and T

Also in the Range S formula I want to put a bracket around the Q and R before it is multiplied by 0.05?

Any suggestions, thanks
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Solved

Sub Consolidate_Data_Button3_Click()

For MY_ROWS = 8 To Range("A" & Rows.count).End(xlUp).Row
If Len(Range("A" & MY_ROWS).Value) Then
Range("S" & MY_ROWS).Formula = ("=(Q" & MY_ROWS & "-R" & MY_ROWS & ")*0.05")
Range("T" & MY_ROWS).Formula = "=Q" & MY_ROWS & "-R" & MY_ROWS & "-S" & MY_ROWS
End If
Next MY_ROWS
End Sub

Thought I'd add
 
Upvote 0

Forum statistics

Threads
1,221,588
Messages
6,160,654
Members
451,662
Latest member
reelspike

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