evaluate issue with overlapping dates

oddworld

Active Member
Joined
May 31, 2005
Messages
250
hi there i am trying to code the following formula in column L =if(or(and(g2>=$s$2,g2<=$t$2),and($s$2>=g2,$s$2<=h2)),"Overlap","Do not overlap")

i am receiving a compile error @ range line on "if", would appreciate some assistance

Code:
Sub Overlap()
 Dim Addr As String
  Addr = "g2:g" & Cells(Rows.Count, "g").End(xlUp).Row
  Range(Addr).Offset(, 5) = Evaluate (addr & if(or(and(g2>=$s$2,g2<=$t$2),and($s$2>=g2,$s$2<=h2)),"Overlap","Do not overlap"), LastRow))
End Sub

Regards,
Odd
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Instead of using Evaluate, what about :

Code:
Dim Addr As Range
Set Addr = Range("g2:g" & Cells(Rows.Count, "g").End(xlUp).Row).Offset(, 5)
With Addr
    .Formula = "=IF(OR(AND(G2>=$S$2,G2<=$T$2),AND($S$2>=G2,$S$2<=H2)),""Overlap"",""Do not overlap"")"
    .Value = .Value
End With

Or using Evaluate :

Code:
Dim Addr$
Addr = "g2:g" & Cells(Rows.Count, "g").End(xlUp).Row
Range(Addr).Offset(, 5) = Evaluate(Replace("if(or(and(#>=$s$2,#<=$t$2),and($s$2>=#,$s$2<=h2)),""Overlap"",""Do not overlap"")", "#", Addr))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

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