If statement with 3 conditions is not working correctly

Gwhaou

Board Regular
Joined
May 10, 2022
Messages
78
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
Hello,

I create a macro to calculate the time travel between two times which are attendance records;

To calculate the difference between B and A

So in this case we havec 3 conditions :

- B is greater than A so you can make de substraction
- Or B is less than A so it's an error from the system, you have to return the message "error" on the cell
- Or there is no value on B so you have to letthe cell blank

But when I'm runing this code the macro doesn't consider the last condition :


VBA Code:
Sub Trial()



LastLine = Range("A" & Rows.Count).End(xlUp).Row

    For i = 2 To LastLine
    
        If (Range("B" & i)) > (Range("A" & i)) Then
        
        Sheets("Sheet_1").Range("F" & i).FormulaR1C1 = "=RC[-4]-RC[-5]"
         
        
        ElseIf IsEmpty(Range("E" & i)) = True Then
    
        'Leave the cell blank
    
        ElseIf (Range("B" & i)) < (Range("A" & i)) Then
        
        Range("F" & i) = "Error"
    
        End If
    
    Next i
End Sub

Capture.PNG

Please can someone help me on this 🙏
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.

Forum statistics

Threads
1,214,982
Messages
6,122,580
Members
449,089
Latest member
Motoracer88

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