This issue has been causing me some angst.
I need to filter data based on a string value, the value is greater than X and X potentially can be anything.
Up until last week it was always 1.0E-06, so the string was >1.0E-06
My customer has changed the Top concentration for his dose response screening to 1.0E-05.
I can read from a separate file what the Top concentration is going to be.
What I've failed to do is figure out a way to get the second filter to be a variable.
I hope this makes sense.
Thank you for your time.
Hj
I need to filter data based on a string value, the value is greater than X and X potentially can be anything.
Up until last week it was always 1.0E-06, so the string was >1.0E-06
Code:
' Release Filter and select ">1.0E-06"
LR2 = BAICust2.Range("A50000").End(xlUp).Row
BAICust2.Range("$A$1:$IW$" & LR2).AutoFilter Field:=13, Criteria1:="<>", _
Operator:=xlAnd
BAICust2.Range("$A$1:$IW$" & LR2).AutoFilter Field:=13, Criteria1:= _
"=>1.0E-06", Operator:=xlAnd
My customer has changed the Top concentration for his dose response screening to 1.0E-05.
I can read from a separate file what the Top concentration is going to be.
What I've failed to do is figure out a way to get the second filter to be a variable.
I hope this makes sense.
Thank you for your time.
Hj