GetFieldReturns the contents of fieldName.FileMaker Pro 6.0 or earlierUse this function to get the contents of fieldName, or in any function that uses a field, such as NPV, GetSummary, GetRepetition, or the aggregate functions.Suppose you have the fields Arrow and Target. Arrow contains the text string Target, and Target contains the text string Bullseye.
• GetField(“Arrow”) returns Target. Notice the use of quotation marks around Arrow to indicate the literal string is the fieldName parameter.
• GetField(Arrow) returns Bullseye. Notice the absence of quotation marks to indicate the value stored in the Arrow field is the fieldName parameter.Suppose you have the fields FirstName and LastName. FirstName contains the text string Jane, and LastName contains the text string Public.
• GetSummary(GetField(“Field1”), GetField(“Field” & “2”)) performs a summary on the summary field Field1, using a break field of Field2.