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
I have a monthly report I send out that has a long list of recipients. I know I can edit the recurrence of it being sent, but does anyone know of an easy way to just add or take out people that get my email without having to recreate the whole thing?
We would like to allow conference attendees to check themselves in using tablets at the conference center. I know there is a "find in sheet" magnifying glass in table view, but it is not super obvious, especially for non-Smartsheet users. Is there a better way for them to easily find their row among all the attendees so…
Greetings- I have a automation setup when I select the "status" column drop-down to "completed" I want the row info to be emailed to the contact to submitted it with a follow up then I want it to archive the row (aka move to another sheet). When I run the automation only 1 of the 2 requests happen. The archive happens…