Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 17 Oracle Analytics Lounge
- 218 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
How do I add a description word to a XML field (in an .rtf)

TRACY HENGST
Rank 4 - Community Specialist
Summary
How do I add a description word to a XML field (in an .rtf)
Content
The following syntax works:
<?xdofx:if Description___Country_ID123='UNITED STATES' then '' else HarmonizingCode_ID234 end if?>
I would like to know how to add the words 'Harmonizing Code'- right before the XML value shows in HarmonizingCode_ID234
Example:
If United States, then display nothing
If not United States, then display Harmonizing Code-123456789
0
Answers
-
hi
use this and print the tag value after that
<?if: Description___Country_ID123!='UNITED STATES' ?> Harmonizing Code <?end if?>
0 -
Use: <?concat (‘Harmonizing Code - ‘,HarmonizingCode_ID234?> to see the text concatenated to the code
0