Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello to all,
i have a new question to format a textbox.
The textbox looks "12,34564345 €",
what can I do, that the textbox should like looks "12,34 €'
Can anybody help me.
Thank you.
If you have some expression in a textbox, you can do this:
num(sum(Something), '#0,00')
=
Left('12,34564345 €',5)&Right('12,34564345 €',2)If you have some expression in a textbox, you can do this:
num(sum(Something), '#0,00')