Bookmarklet to add custom HTML data format In Alma Analytics Columns properties
Go to this url and follow the instructions: AnalyticsDataHTML
To add and apply an html format data view simply open the Column properties, go to Data format tab and click first on the bookmarklet, then to ok button.
In Alma Analytics you only have two choices to override the default data format: if you want, for example, to highlight a part of text a simple way could be adding <b>
tag to it, but if you try the tags will be displayed literally.
In "Bibliographic Details"."Title" column formula change it as:
replace("Bibliographic Details"."Title", 'library', '<b>library</b>')
replace("Bibliographic Details"."Title", 'library', '<span style="color:red;">library</span>')
The html format couse every string between <> treated as xml/html tags: replace every occurrence of the column name with this formula:
replace("Bibliographic Details"."Title","<", "<")
replace(replace("Bibliographic Details"."Title","<", "<"), 'library', '<b>library</b>')