JTSmith Posted October 15, 2013 Posted October 15, 2013 I have a table called Quote, a table called Properties, and a table called Phone Calls. Quotes layout shows a portal of properties, and I hit a button on each portal row to make a phone call, which shows in the call portal. It puts the name of the property in a log field. I'd like to do some conditional formatting on the Properties portal that turns the text a color IF the name of the property is in the log. I can't seem to figure this one out... Any advice would be greatly appreciated.
eos Posted October 15, 2013 Posted October 15, 2013 Try not isEmpty ( FilterValues ( Logfield ; portal::property ) ) 1
jbante Posted October 16, 2013 Posted October 16, 2013 Also try: not IsEmpty ( FilterValues ( Portal::property ; Table::LogField ) ) This IsEmpty ( FilterValues ( ... ) ) construction seems to be the de facto standard way to check if a value is in a return-delimited list, but the performance is best when the list you expect to be shorter — such as the one-value Portal::property field, in this case — is the first parameter of the FilterValues function. 2
Recommended Posts
This topic is 4054 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now