Forum Discussion

Ginger_Main's avatar
Ginger_Main
New Contributor II
10 months ago

CV Banded Row

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 th...
  • matt515's avatar
    10 months ago

    You could try something like this on cell formatting

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