02-22-2024 11:59 AM
Hey everyone!
Wanted to reach out and see if there was a simple way to include banded rows (every other row highlighted a different shade) into CV formatting within the application.
Thanks for the help!
Solved! Go to Solution.
02-22-2024 01:08 PM - edited 02-22-2024 01:09 PM
You could try something like this on cell formatting
If (IsRowNumberEven = True) Then
BackgroundColor = LightGray
Else If (IsRowNumberEven = False) Then
BackgroundColor = White
End If
02-22-2024 01:08 PM - edited 02-22-2024 01:09 PM
You could try something like this on cell formatting
If (IsRowNumberEven = True) Then
BackgroundColor = LightGray
Else If (IsRowNumberEven = False) Then
BackgroundColor = White
End If