Sign in to join the conversation:
I'm trying to figure out how to enter credit card expiry dates as MM/YY (without entering a day number), and then ideally setting up notifications that alert me when we're within 30 days of that month.
Any suggestions?
By 30 days, you mean 30 days from first of that month?
Assumption: Your column name is [Exp Date]
Create a [Reminder Date] column (Date type)
=IFERROR(DATE(VALUE(RIGHT([Task Name]@row, 2)), VALUE(LEFT([Task Name]@row, 2)), 1), "missing or malformed exp date") - 30
This will return the date you are looking for and
"missing or malformed exp date"
if the expiration date is not entered, is not MM/YY (no leading zeros expected), or if MM is not 1-12.
Build your Alert off that date.
I hope this helps.
Craig
Thanks, Craig
Glad it helped.
Well, there is one odd wrinkle... the formula is resulting in dates for 1918, not 2018 (check out the screenshot)!
The two columns I have are:
CC Expiry (text/number) - I enter this as four digits to represent MMYY
CC Reminder Date (date) - the formula here is =IF([CC Expiry]1 <> "", (IFERROR(DATE(VALUE(RIGHT([CC Expiry]@row, 2)), VALUE(LEFT([CC Expiry]@row, 2)), 1), "missing") - 1))
Thoughts?
Sorry about that. Try this
=IF([CC Expiry]@row<> "", (IFERROR(DATE(VALUE("20"+RIGHT([CC Expiry]@row, 2)), VALUE(LEFT([CC Expiry]@row, 2)), 1), "missing") - 1))
The "20"+... will force the date to be in this century.
Success, thanks
Has anyone had any luck or figured out a work around to include attachments in the body/message of the email? I have received feedback from recipients of the emails that it would be more efficient to be able to download the attachment directly from the email, rather than open an update request, open the file, save the…
I have a number of published sheets, and in recent weeks the bar just below the sheet name, which contained the print icon, the view drop-down menu and the highlight changes icon have disappeared. I haven't done anything on the back end to the underlying sheets. Unfortunately I've put a ticket in for support help (on about…
I want to restrict the duplicate entries in the sheet based on some column value conditions, I can be able to highlight the column but is there any direct method for avoiding duplicates.