Hi,
I'm developing Analytics Publisher Report using RTF.
I have a requirement like,
I have column Col_A, based on column value, I need to display a string. that string contains one more column value (let assume column name as Col_B). my requirement is some part of the string and Col_B column value has to display in bold and underline.
On RTF, on Col_A field I have written like following
<?xdofx: if COL_A =1 then
‘Document Invoice value is $' ||Col_B || ‘ check document’
else if
‘Please find the attachment for Invoice details’
end if?>
Im expecting the output should be like
Document Invoice value is $ 78.92 check document.’
how to achieve this?