Hello,
I have a document with two columns (D and L) with information, one (D) cell says either Enabled, or Disabled; the other (L) is listed either as a blank cell, or with a date.
If D is Enabled, L should always be blank, and if D is Disabled then L should have a date value. I have been scanning forums and trying different methods to work this out, but to no avail.
I've tried to mix and match a few attempts, and my latest err'd formula is:
=IF(ISNUMBER(L2),D2="DISABLED","Yes",ISBLANK(L2),D2="ENABLED","Yes")
Others I have tried are:
=IF(D2="DISABLED",L2="","Yes")AND(D2="ENABLED",L2=NOTBLANK,"Yes")
By separating them:
=IF(ISNUMBER(L2),D2="DISABLED","Yes")
=IF(ISBLANK(L2),D2="ENABLED","Yes")
I know I'm completely off mark here, but would appreciate some help
I have a document with two columns (D and L) with information, one (D) cell says either Enabled, or Disabled; the other (L) is listed either as a blank cell, or with a date.
If D is Enabled, L should always be blank, and if D is Disabled then L should have a date value. I have been scanning forums and trying different methods to work this out, but to no avail.
I've tried to mix and match a few attempts, and my latest err'd formula is:
=IF(ISNUMBER(L2),D2="DISABLED","Yes",ISBLANK(L2),D2="ENABLED","Yes")
Others I have tried are:
=IF(D2="DISABLED",L2="","Yes")AND(D2="ENABLED",L2=NOTBLANK,"Yes")
By separating them:
=IF(ISNUMBER(L2),D2="DISABLED","Yes")
=IF(ISBLANK(L2),D2="ENABLED","Yes")
I know I'm completely off mark here, but would appreciate some help