Hello!
There is possibility make conditional formatting (in my case make gray shading in table cell) based on day of week (in my case saturday and sunday)?
Thanks, regards
conditional formatting based on day of week
Re: conditional formatting based on day of week
Hello,
You can use the following condition:
DataSource.DateTimeColumn.DayOfWeek == DayOfWeek.Saturday ||DataSource.DateTimeColumn.DayOfWeek == DayOfWeek.Sunday
Thank you.
You can use the following condition:
DataSource.DateTimeColumn.DayOfWeek == DayOfWeek.Saturday ||DataSource.DateTimeColumn.DayOfWeek == DayOfWeek.Sunday
Thank you.