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

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
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,215,460
Messages
6,124,949
Members
449,198
Latest member
MhammadishaqKhan

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