You have a table containing HTML content. You need to extract values from specified HTML tags.
For example, "h3" headers from the 'Issue' column (the first match) and bold text (the "strong" tag) from the 'Comment' column (all matches).
Enter the following SQL query:
SELECT *, FIND_VIEW(T1.'Issue', "h3") AS 'Issue HTML', FIND_VIEW(T1.'Comment', "strong", true) AS 'Comment HTML' FROM T1 |
Save the macro and the page.