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

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
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,464
Messages
6,124,969
Members
449,200
Latest member
Jamil ahmed

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