How do I add a counter indx to my formula to continue to move down the column?

Rcflife2335

New Member
Joined
Feb 15, 2024
Messages
2
Office Version
  1. 365
  2. 2021
  3. 2019
Platform
  1. Windows
Sub MATH ( )


Dim LastROW As Integer Dim shODS As Worksheet


LastROW = Range ("K" & Rows. Count) . End (xlUp) . Row


Set shODS = ThisWorkbook-Worksheets ("ODS")


LastROW = shODS. Cells (Rows. Count, 1) . End (x1Up) .Row

For indx = 2 To LastROW

ShODS. Range ("K" & indx) .Formula = "=IFS (I = 0," & indx & Chr (34) & Chr (34) & ",H > I , "
indx & Chr (34) & "YES" & Chr (34) & ",1 = 1," & Chr (34) & "NO" & Chr (34) & ") "


Next


End Sub
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Can you post an example of what your formula looks like for cells in row 1 (e.g. H1, I1, K1, L1)?
 
Upvote 0

Forum statistics

Threads
1,217,349
Messages
6,136,052
Members
449,986
Latest member
rittersportyummy

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