Sign in to join the conversation:
Hello,
I am trying to use this formula:
=IF([Column2]5="","",(IF((VLOOKUP([Column4]5,'Combined Timesheets'!A:[Column2],2,FALSE))=[Column2]5,"Yes","")))
It wont work and I keep getting the #UNPARSEABLE error. Can anyone help me fix my formula?
It looks like you may have an excel tab reference 'Combined Timesheets'! in the formula. Can you write out in words what you want the formula to do?
If Column2 Row5 equals a comma, Then (value if true) (value if false)
If you have more conditions to evaluate just indent as needed. I think this will lead to a better structured formula in the end (using index/match, OR, @row). Looking forward to your response.
=IF( [Column2]5="","", (IF ((VLOOKUP([Column4]5,'Combined Timesheets'!A: [Column2],2,FALSE))=[Column2]5,"Yes","" )) )
There are several potential issues I see with this formula... which makes the final one not-needed. Also there is what looks to be an excel or Google sheet reference to an alternative
First there is an extra open parenthesis before the 2nd IF statement
=IF([Column2]5="","",----> (<-----IF((VLOOKUP([Column4]5,'Combined Timesheets'!A:[Column2],2,FALSE))=[Column2]5,"Yes",""))---->)<-----
Second, it looks like there is a reference to a separate google sheet that might have come when you ported this over from Exel or Google. This could also e causing the problem.
=IF([Column2]5="","",IF((VLOOKUP([Column4]5,----->'Combined Timesheets'!A:<------[Column2],2,FALSE))=[Column2]5,"Yes",""))
Thanks for your reply,
I imported several tabs from an excel workbook and many of them contain referencing formulas. I imported the formulas as well but its not working in smartsheet.
Referencing another sheet in Smartsheet is VERY different than referencing another sheet in Excel.
Here is an article from Smartsheet on how to reference other sheets...
https://help.smartsheet.com/articles/2476606-formulas-reference-data-from-other-sheets
As a basic outline, I have column 1, 2, and 3. Columns 1 and 2 list 4 identical options: A, B, C, D in a drop down menu. Essentially, I would like column 3 to calculate/display the difference between columns 1 and 2, removing a duplicate. For example: Column 1: A, B, C, and D are selected in the drop down Column 2: B is…
I need the formula to get the text from the next row in a specified column. I am creating the formula in row 2 in a column named 'Next' and want it to bring back the data from column 'Test' in row 3. This is what I have tried so far but getting #unparseable error. =INDEX(Test:Test, row() , +1) =INDEX([Test]:[Test], row() ,…
I have a formula that is currently working (see below); I need to add a condition, from a specific Column (Study Status)-that if it equals a particular choice ("Study Ongoing - Follow up"), that it doesn't even bother looking at this formula and automatically turns the FLAG off. Furthermore, I'll need to have several…