QUESTION HTML CODE - BULLETS

How could I render the following bullet in HTML code?

I know I could do the following for the first bullet, but how can I add the sub bullet of the first bullet?

  • {2}

image

formattin depends on some defaults ( i guess your talking about your outlook case)

give a try on

<ul>
<li>Miranda:<ul><li>Hello</li><li>Chau</li><ul></li>
<li>MS:<ul><li>LaLa</li><ul></li>
</ul>
1 Like

I have the following Excel file, from which I get the information through my automation made in Uipath.

The problem is once the automation is executed, I want my format to look like this:

image

That is, erasing the blank spaces that have no information. And with their corresponding vignettes where they correspond.

The error is that it looks like the following, I attach an image:

How could I solve the aforementioned?

I attach a screenshot of my HTML code as well.

depending on some details on how you have done the imp on iteration / value retrieval and html construction

Give a try on checking if col value is blank before using it

IsNothing(row(“ColName”)) OrElse String.IsNullOrEmpty(row(“ColName”).toString.Trim)

retrins true for empty col value

1 Like

Thank you very much for the quick answer!

IsNothing(row(“ColName”)) OrElse String.IsNullOrEmpty(row(“ColName”).toString.Trim)

What this “Trim”??

Could you give me an example about the function you just wrote? how to finish understanding how to use it?

[image]

grafik

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