Correct Syntax for expression builder
which of the following is the most accurate syntax for expressions and which are completely incorrect or might break down?
[<PrimaryBillToCountry>]='USA'
[<PrimaryBillToCountry>]=LookupValue("COUNTRY", "USA")
FieldValue([<PrimaryBillToCountry>])='USA'
FieldValue([<PrimaryBillToCountry>])=LookupValue("COUNTRY", "USA")
Should we be using field value for all data types?
thanks