Format cells

Hi,

I need to change the format of column F, I’m trying to use this activity but it’s not working and I don’t know how to introduce the range in the activity. Can anyone help me?
image
Thank you in advance,
María

Hi @mmarcos

Try this

Excel.Sheet(“Hoja1”).Range(“F:F”)

Hi @mmarcos

Try this way:

Excel.Sheet("Hoja1").Range("F:F")

Hope it helps

Hi,

Which language do you use? If C#, the following will work.

Excel.Sheet["Hoja1"].Range["F1"]

Regards,

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