我想在此自定義功能中添加第二個地址欄(即。公寓#101)。如果你願意,你可以解釋的案例(不爲IsEmpty是如何工作的,我願意嘗試添加在自己的第二個地址字段...將第二個地址欄添加到此自定義功能中(Filemaker Pro)
Let(
[
x1 = Name;
x2 = x1 & Case(not IsEmpty(Address); Case(not IsEmpty(x1); "¶") & Address);
x3 = Case(not IsEmpty(City); City & ", ") & Case(not IsEmpty(State); Upper (State) & " ") & Zip;
x4 = x2 & Case(not IsEmpty(x3); "¶") & x3;
x5 = x4 & Case(not IsEmpty(Country); Case(not IsEmpty(x4); "¶") & Country)
];
x5
)