B
bet
Report-problem: who helps ?
-------------------------------
file = adress.mdb
field-LK = countrycode (value is BE or NL)
field-COUNTRY = value is "Belgium" or "Netherlands"
-----------------------------------------
Example for results (Adress-label for postings in a
post-office in Belgium):
Mr, ,
Frans Appelmans,
Kerkstraat, 295 ,
1000 Brussels (-> country-code "BE" is not printed, blank)
( ------> country is not printed, is not printed))
Mr ,
Jan Vierstra
Dijkstraat, 102 ,
NL-1248-Amsterdam (-----> landcode "NL-" is printed
NETHERLANDS (------> country is printed)
So , that means :
- if value in field-LK = BE....no printings "BE" (-> blank)
- if value in field-LK = NL....printing "NETHERLANDS"
When postings letters in a post-office outside Belgium, d
an Country is not blank but "Belgium"
--------------------------------------------------
I am an starting ms-acces-user.
I typed in menu "reports" on the label-properties:
1) First trial :
iff ADRESS.LK = "BE" then ADRESS.LAND(" ")
else ADRESS.LAND(ADRESS.LAND) endif
2) Second trial :.
case when ( [adress].[lk])="be" then " " else [adress].[country] end
Somebody knows exact use of points, comma's, hacks...etc. ?
Best Regards and New-Year Greetings
Bet
-------------------------------
file = adress.mdb
field-LK = countrycode (value is BE or NL)
field-COUNTRY = value is "Belgium" or "Netherlands"
-----------------------------------------
Example for results (Adress-label for postings in a
post-office in Belgium):
Mr, ,
Frans Appelmans,
Kerkstraat, 295 ,
1000 Brussels (-> country-code "BE" is not printed, blank)
( ------> country is not printed, is not printed))
Mr ,
Jan Vierstra
Dijkstraat, 102 ,
NL-1248-Amsterdam (-----> landcode "NL-" is printed
NETHERLANDS (------> country is printed)
So , that means :
- if value in field-LK = BE....no printings "BE" (-> blank)
- if value in field-LK = NL....printing "NETHERLANDS"
When postings letters in a post-office outside Belgium, d
an Country is not blank but "Belgium"
--------------------------------------------------
I am an starting ms-acces-user.
I typed in menu "reports" on the label-properties:
1) First trial :
iff ADRESS.LK = "BE" then ADRESS.LAND(" ")
else ADRESS.LAND(ADRESS.LAND) endif
2) Second trial :.
case when ( [adress].[lk])="be" then " " else [adress].[country] end
Somebody knows exact use of points, comma's, hacks...etc. ?
Best Regards and New-Year Greetings
Bet