-
Counting Distinct Contacts in a Contact List Column
Hello. I have a tracker and in it I am using a Contact List for "Assigned To" and I allow for that to contain multiple contacts. I am trying to count the number of distinct individuals in the column to come up with a total number of contributors to the effort we're tracking. I used: =COUNT(DISTINCT(Leads:Leads)) The result…
-
Need assistance with invalid operation result
For the below once I have a date in [In Progress Date] or [Actual Completion Date] it sets #Invalid Operation when I expect a date result. =IF([Actual Completion Date]@row = 0, IF([In Progress Date]@row <> 0, [In Progress Date]@row + ([Estimated Days to Completion]@row * [Resource Time Percentage]@row), "TBD"), [Actual…
-
INDEX, MATCH, COLLECT, CONTAINS ... oh my.
I have two worksheets. Worksheet A ("Verified Content Report") has about 100 columns. On each row are details about a specific asset. One of those details is in a column called "Owners," which contains one or more user IDs (comma-separated) for each individual "owner" of that asset. Worksheet B has 2 columns: user IDs and…
-
Formula to not Count Checkbox
I am working on building a SUMIFS formula to not count a certain row if a certain checkbox is checked in another sheet. I already have it counting everything if the criteria is correct, but having trouble adding the "NOT" if the checkbox is checked. Thanks, Kris
-
Calendar Displaying blank fields
I am trying to create a smartsheet calendar off a workplan, and am running into the following issue. I don't need all the items from the workplan to populate on the calendar. My main column is [task name], and for some rows, I have an associated [event type] in another column. I only want the calendar to populate the rows…
-
Networkdays Formula
Help! I've tried a 1000 different versions and nothing has worked quite right yet! We are counting workdays between a due date (date- due) and date of issue correction (date- corrected). Also, I don't want to receive the #invaliddata if my date- corrected cell is blank. I'm good with: =IFERROR(NETWORKDAYS([Date- Due]@row,…
-
What is wrong with my IF...AND stmt?
=IF(AND([# of Days Open]@row >= 22, Status@row = "Pending Review"), "Red", IF(AND([# of Days Open]@row <= 14, Status@row = "Pending Review"), "Green", IF(AND(Status@row = "Pending Review", AND([# of Days Open]@row >= 15, [# of Days Open]@row <= 21), "Yellow")))) In my calc above, it was working fine until I added the 3rd…
-
Formula for RYG for Project Schedule Status
We were able to create a formula for Green and Red status but have not figured out how we can automatically set the project status to YELLOW. Normally if an activity(s) are slipping that affects the critical path the project should be in a YELLOW state so a return to green plan can be worked on. So what I'm looking for is…
-
Adding prices in a column if there are multiple statuses identified
Hi Everyone, I have no training in formulas and am only self taught. I cannot seem to figure out how to create a code for this situation, thank you in advance for your help! I would like the formula to add up the dollar values of one column when there are certain statuses selected in a second column, and also is identified…
-
Multiple IFs then SUM
I have developed individual project sheets. In the project sheet I have multiple tasks. I want to populate number of hours I worked on each task, by summing the number of hours I worked on that project prior to a certain date. I keep all my hours worked on various projects in a work log which I am referencing from the…