I have a apex item with values like Value1,Value2,Value3, so on i need to show the values like below
Value 1
Value 2
Value 3
below is my select query, can anyone help here to show the comma seperated values as one below another ex :: a,b,c,d
i need to see the output as
a b c d
SELECT AD.EMAIL_ADDRESS recipient
FROM HES_EXTERNAL_ACCOUNTS EA,
HES_ADDRESSES AD
WHERE EA.ACCOUNT_CODE = 'AUTO';
The above query will result the email address like a,b,c,d i need to show in apex item as a b c d