-
IF statement for personal template
I am looking for some advice on how to use a IF statement on a template that my team will use, but it needs to be set up part-way in the template. For example, I want the column Quantity Budgeted to show a different number based on the selection in the Group column. If the group column is Apple, I want Quantity Budgeted to…
-
If() and date functions
Hi - I've noticed what appears to be a problem with if() and date functions. One issue is seen here: The "date" column is a "date column" and will only accept dates. The "year" column is a text/number column. The year column uses two different forumlas, which are shown in "column 4." I would expect that the second line…
-
Can you generate a date with limits?
I am working within a tracker, and I have the date autogenerating. Currently the date will generate once the first update will occur, and I just did =[Review Date]@row + 60 so that it adds 60 days from the review date. However, the program ends 12/31 so I want to add a limit so that if 60 days from the review date is after…
-
Why doesn't INDEX(MATCH) work as intended?
Hi, all: I've recently been assigned to work on a set of tools for my team that have been run in Smartsheet for some time, and am really struggling. Setup: 4 sheets, for 4 separate project-cycle teams. Each sheet needs to refer to the same core set of unique IDs entered in the primary column for Sheet 1. All sheets contain…
-
IF Formula - Not Working
Why isn't this working? The yellow fields should be returning the numbers in the column "2023 Beginning Balance- Char" because they are UNDER 5600 (per my formula). But they are reading the 700 and 798.56 as OVER 5600 and returninng 5600. =IF([2023 Beginning Balance - Char]12 >= "5,600.00", "$5,600.00", IF([2023 Beginning…
-
Combine LEFT and VLOOKUP Formulas in one cell
I need to combine two formulas in one cell. One formula removes a specific text from the body of the email and another formula maps it from another sheet via a VLOOKUP. How would I combine these two formulas? Thank you!! =LEFT(Text@row, FIND(">", Text@row, 1) - 1) =VLOOKUP([Interface Log]@row, {Interface Raw Data - Daily…
-
INDEX MATCH Formula with row Hierarchy
Hello, I need to reference information from the Digital column and Match it into the Digital Row. The row in white is the Parent column and the rows in grey are the Children. Here is the formula I'm using: =(INDEX(PARENT(Digital@row), MATCH("Digital", CHILDREN(WO@row), 0))) In the Parent row the cell is blank, but in the…
-
Current & Previous Month formula
I'm trying to work out a formula that says if the date in the [Date Column] is the current month insert the word current, but if it's in the previous month insert previous, if it isn't either of those leave blank. What's the best way to do this?
-
Can't work out why I am getting an UNPARSEABLE error message please help
All I need is the correct return according to the Probability and Impact criteria in screenshot 1 into my Risk log in screenshot 2 Screenshot 1 =INDEX(COLLECT({Risk Management Matrix Range 1}, {Risk Management Matrix Range 2}, Probability@row), {Risk Management Matrix Range 3},Impact@row),1)
-
Elapsed Time from Today
Hi there, I'm trying to write a formula wherein I can track elapsed time since an injury occurred at work. My team would submit daily on a form created and based on the logic I'd like it to parse the data and determine if a 'yes' value is entered then the days elapsed would reset. If a 'no' value is entered then the days…