A Akai90 Member Local time Tomorrow, 00:22 Joined Feb 8, 2022 Messages 67 Nov 29, 2022 #1 Code: ="Ini adalah memperakui bahawa <b>" & [namapp] & " ( " & [NOKP] & " )</b> telah " above is my current code. is there another where if i want replace "NOKP" with another fields "PSPORT" if "NOKP" is null hope you understand
Code: ="Ini adalah memperakui bahawa <b>" & [namapp] & " ( " & [NOKP] & " )</b> telah " above is my current code. is there another where if i want replace "NOKP" with another fields "PSPORT" if "NOKP" is null hope you understand
arnelgp ..forever waiting... waiting for jellybean! Local time Tomorrow, 00:22 Joined May 7, 2009 Messages 20,414 Nov 29, 2022 #2 ="Ini adalah memperakui bahawa <b>" & [namapp] & " ( " & Nz([NOKP], [PSPORT]) & " )</b> telah "
A Akai90 Member Local time Tomorrow, 00:22 Joined Feb 8, 2022 Messages 67 Nov 29, 2022 #3 Code: ="Ini adalah memperakui bahawa <b>" & [namapp] & " ( " & Nz([NOKP], [PSPORT]) & " )</b> telah disertakan." GOT SYNTAX ERROR
Code: ="Ini adalah memperakui bahawa <b>" & [namapp] & " ( " & Nz([NOKP], [PSPORT]) & " )</b> telah disertakan." GOT SYNTAX ERROR
arnelgp ..forever waiting... waiting for jellybean! Local time Tomorrow, 00:22 Joined May 7, 2009 Messages 20,414 Nov 29, 2022 #4 you should put [PSPORT] field in your form, then set the textbox Visible property to No.
A Akai90 Member Local time Tomorrow, 00:22 Joined Feb 8, 2022 Messages 67 Nov 29, 2022 #5 arnelgp said: you should put [PSPORT] field in your form, then set the textbox Visible property to No. Click to expand... PROBLEM SOLVED BY USING SQL SQL: comkp: Nz([NOKP];[PSPORT])
arnelgp said: you should put [PSPORT] field in your form, then set the textbox Visible property to No. Click to expand... PROBLEM SOLVED BY USING SQL SQL: comkp: Nz([NOKP];[PSPORT])
arnelgp ..forever waiting... waiting for jellybean! Local time Tomorrow, 00:22 Joined May 7, 2009 Messages 20,414 Nov 29, 2022 #6 so you use semicolon ( and not comma (,)