I want to add a text after Dcount formula in Ms Access Form. I use the unbound text field to use the DCount formula however I would like to add 'text' within the same field after Dcount formula finishes. Please advise how do I do that?
Asked
Active
Viewed 33 times
0
-
1You should be able to just extend the formula with a string concatenation i.e. `=DCOUNT(....) & " your text"`, right? – user9601310 Nov 18 '20 at 04:01
-
Yes that's right. Thank you so much. It works! – Yasir Abbas Nov 18 '20 at 11:24