How to: Bold text in word file & Data Scraping

hi all
I want to enter a bold text or different color text in a word file.

and the second how to

I want a count (if the data is available or not in the table) and the table is defined on a web page. Please help. I have used Find Children activity but not able to get as I am getting a selector error.
Thanks in advance.

@quanghieuci
you need watch selectors from UiPath training videos. web data scraping also give useful inputs.
Basically for bold text you can use Send Key Activity 2 times.

  1. SendKey: Ctrl+ ''a"
  2. SendKey: Ctrl+“b”

These two steps will make bold all your text content.
Hope my inputs are useful.