Hi all,
I would like to highlight specific item in reporting.
I can only use table as I have other things need to merge it into one place
Can alteryx do this specific task?
Solved! Go to Solution.
@terrellchong
Nicely done!
Hi @binuacs , @Qiu , @atcodedog05 ,
I am thinking of something that is like this at the moment into the formula
REGEX_Replace([Table], "<.*>", '<span style="color:RED"><u>'+ +'</u></span>')
As the letter inside the <> will change over time, its best to use a regex to sort of find the < and >, then replace the thing that you guys just posted.
Yes but you need to know and pass the pattern of text that needs to be highlighted.
Hope this helps : )
Happy to help : ) @terrellchong
If our response helps please don't forget to mark it as solution.
Cheers and have a nice day!
Yes, but I am currently stuck at bringing the found pattern text to replace it using regex...