macavity Posted May 14, 2007 Posted May 14, 2007 Apologies if this has been answered elsewhere - or if the answer is obvious and I'm being stupid: In FM 6 and earlier, if go-to-related-record found no matches, the Found Count would be zero. That seems no longer to be the case. I haven't discovered any Get formula that will allow me to display a message when there are no related records. Where have they hidden it?
Ender Posted May 14, 2007 Posted May 14, 2007 In FM7 or later, get(FoundCount) will return the number of records in the found set. In prior versions, use Status(CurrentFoundCount). But for GTRR, you should test for the presence of related records prior to the Go to Related Records[] script step: If [ count(relationship::recordID) = 0 ] #No related records Else Go to Related Records [ relationship ; Show only related ] End If
macavity Posted May 14, 2007 Author Posted May 14, 2007 Thanks a million. I knew it had to be there somewhere. It certainly was easier (fewer steps) the old way.
Genx Posted May 14, 2007 Posted May 14, 2007 IsEmpty( relationship::recor dID ) may be a quicker test.
Recommended Posts
This topic is 6460 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