To create a data validation rule for a spreadsheet column that only allows entries that are dates within the last 90 days and fall on a weekday, you would use a custom formula. The specific formula to enter into the data validation settings for a cell like A1, assuming A1 is the first cell in the column where you are applying the rule, is: =AND(A1>=TODAY()-90, A1<=TODAY(), WEEKDAY(A1,2)<=5). A data validation rule is a feature in spreadsheet software that allows you to control what kind of data can be entered into a cell or range of cells. If an entry does not meet the specified criteria, the software will prevent the entry and often show an error message. When applying this rule to a column, select the column or the specific range of cells....
Log in to view the answer