QUESTION HTML CODE

image

Good afternoon, I need in my “IF”, that if the word is “PENDING” put it in red with the following format (attached capture of the format):

image

And in case the condition of the IF is not fulfilled, and it is for example: “FULFILLED” (It will be put with another format)

I was trying to include this in my IF, but it was not working for me, how could I fix it?

To make it better understood, I have attached a screenshot of what I want to be able to get to.

image

Hello, I hope I have understood your question correctly.

Is that color code properly specified?

image

image

image

HTML Codes for greater than and less than:

image

image

yes, in the picture it went wrong. But that’s not the problem! Thank you very much anyway!

I would like to know how to change from Uipath to the desired format.

If that’s the case, you are already converting to html format. The question becomes where are you presenting it?

If you write something in HTML format, it will present itself as html if that medium supports HTML.

To state the obvious, If you output your text in html format in a text file and save it as a .html file, it will display your text as HTML when opened in a Browser but not when you open it in Notepad.

Not to forget, a properly formed html is recommended to be:

<html>
<head>meaningful title </head>
<body>
<ol>
1. Your line here=>Green
2. Your line here=>Red
3. Your line here=>Red
</ol>
</body>
</html>
1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.