I love this forum and have found solutions for- and learned- so many things that are priceless to my excel creations!
I'm planning to convert some spreadsheet tools through an excel compiler program but there are limitations with the data validation formulas for this program. I have liberally used data validation to control the behavior of my tool and am hoping a macro is a good alternative workaround, but my VBA skills are pretty limited at this point.
I have this formula which controls the allowable dates to be entered into the field.
=OR(AND(ISBLANK($R7),$Y7>$E7,$Y7<=TODAY()), AND(R7<>"", S7<>"", $Y7>$E7,$Y7<=TODAY()))
All of the cell references are various date fields entered in the row of data and the TODAY reference is to prevent a future date.
I'm planning to convert some spreadsheet tools through an excel compiler program but there are limitations with the data validation formulas for this program. I have liberally used data validation to control the behavior of my tool and am hoping a macro is a good alternative workaround, but my VBA skills are pretty limited at this point.
I have this formula which controls the allowable dates to be entered into the field.
=OR(AND(ISBLANK($R7),$Y7>$E7,$Y7<=TODAY()), AND(R7<>"", S7<>"", $Y7>$E7,$Y7<=TODAY()))
All of the cell references are various date fields entered in the row of data and the TODAY reference is to prevent a future date.