To Change Font Color in Excel

Hello All,
Is there any option to change the color of font in excel based on the condition. Please let me know how can I achieve this.

Hey nithya.

There is no direct activity in UiPath (you can only color the background).

I would first create a ‘click’ of the cell in charge (you almost always wanna create a dynamic selector for this, where your dynamic part is the column and row name, e.g. colName=‘B’ rowName=‘3’). Then you can run a simple macro (the ‘Execute Macro’ activity), where you change the font color in the active cell (e.g. ActiveCell.Interior.Color = HotPink)

Did that helped you?

Kind regards
Anders