I've got a formula that references another spreadsheet. Basically, it goes down a row starting at, say, D3 and checks to see if anything has been entered. If it has, I want some text to show up; if D3 is empty, I want it to check C3, then B3, etc.
Normally D3, C3, etc. will have an 'x' in it, but occassionly someone misses the theme and types in their intials. I've been using something similar to
Only it's longer. However, when I add the COUNTA function to account for initials or other words, I can't get excel to accept the last COUNTA. Meaning, I get a 'bad formula' error and excel highlights the last instance of COUNTA. The actual formula I'm using is below. Does anyone see a problem with it? I can't seem to find an error, and if I retype the formula without the COUNTA, it works fine. Thanks!
The COUNTA(...!D3) function is the instance that Excel does not like. The very last COUNTA instance checks a 'notes' section and attaches a warning. That part seems to be working. Thanks again, and sorry if this isn't very clear.
dylan
Normally D3, C3, etc. will have an 'x' in it, but occassionly someone misses the theme and types in their intials. I've been using something similar to
=IF(D3="x","D3 Complete", IF(C3="x", "C3 Complete", ""))
Only it's longer. However, when I add the COUNTA function to account for initials or other words, I can't get excel to accept the last COUNTA. Meaning, I get a 'bad formula' error and excel highlights the last instance of COUNTA. The actual formula I'm using is below. Does anyone see a problem with it? I can't seem to find an error, and if I retype the formula without the COUNTA, it works fine. Thanks!
=if(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!K3=1),"(" & '[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!L3 & ")", IF(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!J3=1),"Hydramax completed", IF(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!I3=1),"Hydramax started", IF(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!H3=1), "Takeoffs complete", IF(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!G3=1), "n-values complete", IF(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!F3=1), "Structures complete", IF(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!E3=1), "XSs cut", IF(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!D3 =1), "CL exported","")))))))) & IF(COUNTA('[lds_model_setup_progress_FRENCH_BROAD.xls]Sandymush Creek'!O3=1)," Check GIS notes!", "")
The COUNTA(...!D3) function is the instance that Excel does not like. The very last COUNTA instance checks a 'notes' section and attaches a warning. That part seems to be working. Thanks again, and sorry if this isn't very clear.
dylan