Hi folks, How to fill the background color of added row in a smartsheet process?
1 Like
yes I am using that Smartsheet activities
Hi Aasif,
use smart sheet add row activity and provide the row details by using the below code
New Row() With { .Format = “,34,” , .Cells = New List(Of Cell) From{ New Cell() With { .Value = “cellValue”, .ColumnId = CLng(columnID) }}}
use the below link for better understanding and add comma’s front and back based on the format u need from the link
https://smartsheet-platform.github.io/api-docs/?csharp#formatting
1 Like
Thanks Vidhatha, it’s working fine.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.