Auto Enter Custom values

Hi all,

I have an easy quesiton again hopefully.

I have a field that I want to auto enter default data. I want the concatenation of a field value + a custom value.

Let’s say i have part # field in the database and my new field is testfield.
part # field has data 1001 then 1002, 1003, 1004, etc.

For testfield property, I want to auto enter the data in part # field then my own custom data. let’s say my custom data is “ABC”.

So my final result for testfield will be 1001ABC, 1002ABC, 1003ABC, 1004ABC.

Is there a way to do that in Servoy? doesn’t seem to allow me to pick a field to do custom auto data entry

use an (un)stored calc

return partnrField+myCustomField

maarten:
use an (un)stored calc

return partnrField+myCustomField

duh! how could i forget!..thanks!

sammy