Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Try this:
='Valore Ordini
' & $(vCommentoValOrdini)
You must close with Single quotes and use like
='Display' & Variable
I tried this:
='$(vCommentoValOrdini)'
and worked...
Cristina,
Sounds like you may want something like this:
='Valore Ordini'
& Chr(013) &
'$(vCommentoValOrdini)'
The Chr(013) is a carriage return.
Good luck
Oscar
Hi
Try to put it into single quotes '$(Variable)' then will be treated as a string and not like a formula that need to be evaluated.
Regards