-
Looking for Formula where count of distinct PO #s in a given PO month
I'm looking for a formula, where need count of unique PO # falls in a month. In this formula, I used specefic PO # i.,e "123" but I need count of all PO # falls in a given month (See the screen shot attached) =COUNTIFS([PO Date]:[PO Date], IFERROR(MONTH(@cell), 0) = MONTH(Date12), [PO Date]:[PO Date], IFERROR(YEAR(@cell),…
-
Retrieving a date from another sheet
Hi All! Sometimes I think Smartsheet is too smart for me. I am simply trying to pull in a date from Sheet A to Sheet B...nothing fancy. I plan to link to a specific date field in Sheet A. I was trying to do Sheet References and I'm not sure what function I should be using. Can you help point me in the right direction?…
-
Network Days Remaining Until Due Date
With this formula for the "Days Remaining Until Due Date," it should be "0" when the due date is today and it should be "-1" when it is only one day past the due date. =IF(ISBLANK([Returned To]@row), NETWORKDAYS(TODAY(), [Date Due]@row), "Complete") Can someone let me how to fix it or if there is an inherent error built…
-
Make symbols turn Gray if date is in the past but only if that column had an entry
I have a selection of vehicles that have the below formula which will insert the red symbol if they are listed in the corresponding column: =IF([日付 Date]@row < TODAY(), "Gray", IF(CONTAINS("4号室 Room 4", [問題報告RV東照明 Reporting Issue RVE Lighting]:[問題報告RV東照明 Reporting Issue RVE Lighting]), "Red")) What I need to know is how to…
-
REPORT NOT ABLE TO VISUALIZE MORE THAN 2500 ROWS
Hi, I have this list of entries, (each one has his ID) stored in a sheet, some of them are validated, some not. I have this other report where all validated IDs are shown, grouped by certain column (country). Once i have arrived to more than 2500 entries the report states: Now the question is, please tell me i dont have to…
-
Sheet not getting updated properly even if linked properly
hello my friends, I have a Master summary sheet that get updated via control center every time a new project is created. This master summary takes data from multiple sheets. For some reason, the data is not formatted properly, or it is empty or it is written Lorem Ipsum even if the data is rightly linked to the sheet…
-
COUNTIFS(OR with multiple checkboxes
Hi, I have a formula where I am trying to say in column 1 count if checkbox A is checked OR in column 2 if checkbox B is checked. Here is the entire formula with the portion I cannot figure out in bold: =COUNTIFS(Simulation:Simulation, "Phillips ED", Complete:Complete, "0", Type:Type, OR(@cell = "Pilot", @cell =…
-
Trying to combine IF, OR, & AND
Hi all, As the title states, I am trying to create a helper column that is checked or unchecked based on a few conditions. I want to check the helper column box if statements 1 and 2 are both true or if statements 1 and 2 are both false. I had written: IF(OR(AND(statement 1@row = 1, statement 2@row = 1), AND(statement…
-
Shortcut for nested IF function
I am tying columns together in a sheet so that when the user selects a product from a dropdown from a cell, it will automatically populate the product's manufacturer. I can do this using the following: =IF([Product Description]@row = "Product 1", "Company 1", IF([Product Description]@row = "Product 2", "Company 2",…
-
Countifs when there are different answer options
Hello, I want to collect data on the number of times certain machines are reported between certain dates Here's is the basic formula that works. =COUNTIFS({NS Repair Detail Report Type}, "OOB", {NS Repair Detail Machine Model and Description}, "Machine Name 1", {NS Repair Detail Activity Date}, >={Sept 1 2022}, {NS Repair…