Hi
I'm trying to convert an Excel formula to Smartsheet formula:
Excel formula =[Installation date]4+(365*[Warranty Expiry]$3)
Aim is to give a future date when the warranty will expire x years after the piece was installed.
Thanks
Hi Mandi,
Try this.
=IF(ISDATE([Installation Date]@row); [Installation Date]@row + 365 * [Warranty Expiry]@row)
The same version but with the below changes for your and others convenience.
=IF(ISDATE([Installation Date]@row), [Installation Date]@row + 365 * [Warranty Expiry]@row)
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Hi Andrée
Thanks, I tried this but I get an error message Incorrect Argument Set. Any ideas?
Happy to help!
Can you describe your process in more detail and maybe share the sheet(s) or some screenshots? That would make it easier to help. (share too, andree@getdone.se)
Andrée
Mandi
your original formula should work. You need to make sure the output and the date reference have the date column types, and your number reference needs to be a text number column.
I have a sheet with a list of customers in one column, and then the following columns are City, Monday, Tuesday, Wednesday, Thursday, Friday. I need help with a formula that I can put in my sheet summary so that if the customer column says Staples (It can say this in multiple rows) that it will tell me the total package…
In my sheet, I have a filter for 2 values (see below images). The result is 294 In my report this formula yields 304. =COUNTIFS({helper-child}, "1", {gapStatus}, <>"Rejected (not a GAP)", {gapStatus}, <>"removed - duplicate", {gapStatus}, <>"removed - not valid") Why are they not matching? What am I missing?
I have a schedule that has a task name column, a date column and a task type column. I am trying to build a formula (in another sheet) that will return the latest date based on when the task type is "APP" and the task name contains "GS" somewhere in the cell. Here is the formula I have come up with: MAX(COLLECT({Schedule…