spartansFC
Programmer
Hi
I'm trying to colour code a text box based off values in a string.
the string value in the query looks like
this outputs values
25
B2
how do I get it to colour the text box based off of a string value which might be the second part of the string
The first string value "25" is a booked session, the second string value "B2" is if the session is funded
I've tried various ones:
InStr([Mon],"B2") Or ([FundedDesc] Like "Parent*")
InStr(1, [Mon], "B2”) <> 0 AND [FundedDesc] Like "Parent*"
I'm sure there is a simple solution
Mikie
I'm trying to colour code a text box based off values in a string.
the string value in the query looks like
Code:
Val: Min([lngSessionTypesID]) & Chr(13) & Chr(10) & Min([strRepValue])
this outputs values
25
B2
how do I get it to colour the text box based off of a string value which might be the second part of the string
The first string value "25" is a booked session, the second string value "B2" is if the session is funded
I've tried various ones:
InStr([Mon],"B2") Or ([FundedDesc] Like "Parent*")
InStr(1, [Mon], "B2”) <> 0 AND [FundedDesc] Like "Parent*"
I'm sure there is a simple solution
Mikie