CV Banded Row

Ginger_Main
New Contributor II

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!

1 ACCEPTED SOLUTION

matt515
New Contributor III

You could try something like this on cell formatting

If (IsRowNumberEven = True) Then
BackgroundColor = LightGray
Else If (IsRowNumberEven = False) Then
BackgroundColor = White
End If

View solution in original post

1 REPLY 1

matt515
New Contributor III

You could try something like this on cell formatting

If (IsRowNumberEven = True) Then
BackgroundColor = LightGray
Else If (IsRowNumberEven = False) Then
BackgroundColor = White
End If

Please sign in! Ginger_Main