Which formula will return TRUE if the column contains only cells with a value of "D" or empty?
I need this to control conditional formatting.
Let me briefly tell you how I use it: I save all translation lines for 9 languages ββfor all graphic texts in my games. I need to control the status of all texts, because I often change them, and I need to transfer the changed text to the translation agency. I use column A to control the status of texts stored in column B. State D means Done. I use conditional formatting for green cells made and all other yellow ones. Now your formula helps me highlight the heading cell and tells me if there are cells in this language that are awaiting translation or not.
I use this principle for all my text data, where I need to track status. I have macros to set the conditional formatting of column B based on the values ββin column A, if anyone is interested. In my macro there is obviously a column A column with an active cell; -)
EDIT: inspired by the answers below, my final formula =(COUNTA(R:R))<>COUNTIF(R:R;"D")+1 , where +1 is for skipping the header.
source share