VBA for IF/AND on 3 Criteria

Small Paul

Board Regular
Joined
Jun 28, 2018
Messages
118
Hi All

I have a macro but am struggling with this part.

The code for this section is presently:

Code:
    Range("A2").Select    ActiveCell.FormulaR1C1 = "1"
    Range("A3").Select
    ActiveCell.FormulaR1C1 = _
        "=IF(AND(RC[28]=R[-1]C[28],RC[29]=R[-1]C[29],RC[30]=R[-1]C[30]),R[-1]C,R[-1]C+1)"
    Range("A3").Select
    Selection.AutoFill Destination:=Range("A3:A500")

I have tried using text "None" in the formula but that fails too!
What I am trying to do is:
  • Column A increases by 1 on each row where the row differs (according to the following criteria)
  • A2 will have "1" entered into it
  • A3 will then be active cell
  • If AC3 <> "None", does AC3 = AC2, AND does AE3 = AE2. If yes, then A3 = A2, else A2+1
  • If AC3 = "None", does AD3 = AD2, AND does AE3 = AE2. If yes, then A3 = A2, else A2+1
  • This formula is then autofilled to the last row containing data

Any guidance would be greatly appreciated.

Cheers
Small Paul.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Are you able to write the formula in Excel (not VBA)?
If so, then just turn on the Macro Recorder, and record yourself creating the formula on the worksheet, and you will have the VBA code that you need for that.
Also, you do not need autofill. You can assign the formula to an entire range at once. Just find the last row with data by picking some column that always has data. If it was column B, that code would look like:
Code:
Dim lastRow as Long
lastRow = Cells(Rows.Count, "B").End(xlUp).Row
Range("A3:A" & lastRow).FormulaR1C1 = ...
 
Upvote 0

Forum statistics

Threads
1,216,052
Messages
6,128,509
Members
449,455
Latest member
jesski

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