Excel - Shading entire row based on change of value

后端 未结 11 1794
一生所求
一生所求 2020-12-23 20:05

I would like to shade entire rows in Excel based on the value of one cell. For example say I have the rows below:

**File No**
1122
1122
1144
1155
1155
1155
         


        
11条回答
  •  既然无缘
    2020-12-23 20:23

    you could use this formular to do the job -> get the CellValue for the specific row by typing: = indirect("$A&Cell()) depending on which column you have to check, you have to change the $A

    For Example -> You could use a customized VBA Function in the Background:

    Public Function IstDatum(Zelle) As Boolean IstDatum = False If IsDate(Zelle) Then IstDatum = True End Function

    I need it to check for a date-entry in column A:

    =IstDatum(INDIREKT("$A"&ZEILE()))

    have a look at the picture:

提交回复
热议问题