-
Simplify Formula
I have a formula that checks to see if a date falls between dates. If so, it marks the row current or previous. The goal is to see if the date falls in the current year or the previous year and then label the row accordingly. The formula references another sheet where the dates are calculated. It has a column for the start…
-
INVALID DATA TYPE error when using MONTH()
Hi, I'm working on a formula that will use a date to reference a value in another sheet: The sheet that will be referenced looks like this: I'm planning on using INDEX and MATCH to get a date value from a row in the first sheet to return a percentage value (based on the month that row occurs in) from this sheet. The…
-
Workflow email content based on conditions/critieria
Hi All I'm very very new to SS (just got a license today) and I've been included in a team to improve the notification process to our wider audience with key information to help them complete actions quicker with minimum TLDR! Is it possible to take the column header and add the text to the output notification (email) if a…
-
How to combine multiple IF statements into one?
Hello! I have 3 different IF statements in 3 separate columns that I would like combined into 1 if possible. The three IF statements/columns are the following: Red Status - if task is in the past and not checked complete: =IF(AND([End Date]@row < [Today Helper]@row, [Task Complete?]@row = 0), "Red", "Green")=IF(AND([End…
-
Calculate Date based on Criteria in Two Cells
I need to write a formula to check a cell for a size (Small, Medium, or Large) and calculate a start date from a go-live date in another cell. If the size is small, it's 14 days earlier, if it is medium, it is 21 days earlier and if large 28 days earlier. I've go this as my starting point: =IF([Size]@row,…
-
Can I setup conditional formatting based on a time function?
Hello! Is it possible to setup conditional formatting based on a time function? For example, I want a cell to turn red if it hasn't been updated by 12noon. Or, I want a cell to turn red if the current time is after 2pm.
-
Workflow - recognising email domain as part of "assigned to" column
Hi all, I have two columns: Assigned to - this is set as the "contact list" property and linked to the address book so you can put an email address e.g. "firtstname.lastname@smartsheets.com". However in the field it would show up as "firstname lastname" without the domain at the end Company - dropdown box with 2 company…
-
Adding hours to a date
Hello, I have the following columns in a sheet: "Created (Date)" records the date/time a form was submitted. "Modified (Date)" records the date/time a row is copied to the final sheet in my workflow. I want to compare the modified date to another date that is manually entered in the row to determine when to send a…
-
Help with Max/Collect Function
Hello! For my project, I have a database of task cards. Information for these task cards (such as Date updated, status, labor hours per skill set, etc) is input into a separate sheet, which is collected and fed into my main database. Currently, I have a helper column that says "Is this the most recent row updated for this…
-
Nested ISDATE error
Hi - I am trying to count the NETWORKDAYS between [Date Assigned] and [Date Complete] if [Date Complete] is a date, otherwise to calculate NETWORKDAYS between [Date Assigned] and TODAY() using this formula but get an argument error. Looking for help! =IF(ISDATE([Date Complete]@row, NETWORKDAYS([Date Assigned]@row, [Date…