\n <\/img><\/a>\n <\/div>\n<\/div>\n <\/p>"}]}},"status":{"statusID":3,"name":"Accepted","state":"closed","recordType":"discussion","recordSubType":"question"},"bookmarked":false,"unread":false,"category":{"categoryID":322,"name":"Formulas and Functions","url":"https:\/\/community.smartsheet.com\/categories\/formulas-and-functions","allowedDiscussionTypes":[]},"reactions":[{"tagID":3,"urlcode":"Promote","name":"Promote","class":"Positive","hasReacted":false,"reactionValue":5,"count":0},{"tagID":5,"urlcode":"Insightful","name":"Insightful","class":"Positive","hasReacted":false,"reactionValue":1,"count":0},{"tagID":11,"urlcode":"Up","name":"Vote Up","class":"Positive","hasReacted":false,"reactionValue":1,"count":0},{"tagID":13,"urlcode":"Awesome","name":"Awesome","class":"Positive","hasReacted":false,"reactionValue":1,"count":0}],"tags":[{"tagID":254,"urlcode":"formulas","name":"Formulas"},{"tagID":595,"urlcode":"help","name":"help"}]},{"discussionID":110384,"type":"question","name":"Trying to target entire column in a different sheet with a formula","excerpt":"Hi, so what I'm working on is trying to automate status updates between different sheets. The first formula is looking at a status within the same sheet that the formula is written. This formula is working correctly and has no issues. However when including a nested formula to look at a different sheet, that is where that…","snippet":"Hi, so what I'm working on is trying to automate status updates between different sheets. The first formula is looking at a status within the same sheet that the formula is…","categoryID":322,"dateInserted":"2023-09-18T14:34:33+00:00","dateUpdated":null,"dateLastComment":"2023-09-19T08:18:02+00:00","insertUserID":166672,"insertUser":{"userID":166672,"name":"Andrew Skaggs","url":"https:\/\/community.smartsheet.com\/profile\/Andrew%20Skaggs","photoUrl":"https:\/\/us.v-cdn.net\/6031209\/uploads\/defaultavatar\/nWRMFRX6I99I6.jpg","dateLastActive":"2023-09-19T15:28:38+00:00","banned":0,"punished":0,"private":false,"label":"✭"},"updateUserID":null,"lastUserID":151203,"lastUser":{"userID":151203,"name":"Nick Korna","url":"https:\/\/community.smartsheet.com\/profile\/Nick%20Korna","photoUrl":"https:\/\/us.v-cdn.net\/6031209\/uploads\/defaultavatar\/nWRMFRX6I99I6.jpg","dateLastActive":"2023-09-19T16:22:55+00:00","banned":0,"punished":0,"private":false,"label":"✭✭✭✭✭✭"},"pinned":false,"pinLocation":null,"closed":false,"sink":false,"countComments":3,"countViews":38,"score":null,"hot":3390160955,"url":"https:\/\/community.smartsheet.com\/discussion\/110384\/trying-to-target-entire-column-in-a-different-sheet-with-a-formula","canonicalUrl":"https:\/\/community.smartsheet.com\/discussion\/110384\/trying-to-target-entire-column-in-a-different-sheet-with-a-formula","format":"Rich","lastPost":{"discussionID":110384,"commentID":395820,"name":"Re: Trying to target entire column in a different sheet with a formula","url":"https:\/\/community.smartsheet.com\/discussion\/comment\/395820#Comment_395820","dateInserted":"2023-09-19T08:18:02+00:00","insertUserID":151203,"insertUser":{"userID":151203,"name":"Nick Korna","url":"https:\/\/community.smartsheet.com\/profile\/Nick%20Korna","photoUrl":"https:\/\/us.v-cdn.net\/6031209\/uploads\/defaultavatar\/nWRMFRX6I99I6.jpg","dateLastActive":"2023-09-19T16:22:55+00:00","banned":0,"punished":0,"private":false,"label":"✭✭✭✭✭✭"}},"breadcrumbs":[{"name":"Home","url":"https:\/\/community.smartsheet.com\/"},{"name":"Get Help","url":"https:\/\/community.smartsheet.com\/categories\/get-help"},{"name":"Formulas and Functions","url":"https:\/\/community.smartsheet.com\/categories\/formulas-and-functions"}],"groupID":null,"statusID":3,"attributes":{"question":{"status":"accepted","dateAccepted":"2023-09-19T15:11:57+00:00","dateAnswered":"2023-09-18T15:29:43+00:00","acceptedAnswers":[{"commentID":395705,"body":"
Hi @Andrew Skaggs<\/a>,<\/p>For the cross sheet reference you can use COUNTIF combined with AND in your IF statement:<\/p>
=IF(AND([Assigned To]63 = \"Yes\", COUNTIF({Status}, \"Approved\") = 0), \"Not Started\", \"Complete\")<\/p>
If Assigned To row 63 is \"No\" and no rows in the status column are \"Approved\", you'll get a \"Not Started\" result, otherwise it will show as complete. <\/p>
You can easily change the AND to OR if only one condition needs to be true (you'll also need to change =0 to >0.<\/p>
Hope this helps somewhat, but if you've any problems\/questions then just ask! 🙂<\/span><\/p>"}]}},"status":{"statusID":3,"name":"Accepted","state":"closed","recordType":"discussion","recordSubType":"question"},"bookmarked":false,"unread":false,"category":{"categoryID":322,"name":"Formulas and Functions","url":"https:\/\/community.smartsheet.com\/categories\/formulas-and-functions","allowedDiscussionTypes":[]},"reactions":[{"tagID":3,"urlcode":"Promote","name":"Promote","class":"Positive","hasReacted":false,"reactionValue":5,"count":0},{"tagID":5,"urlcode":"Insightful","name":"Insightful","class":"Positive","hasReacted":false,"reactionValue":1,"count":0},{"tagID":11,"urlcode":"Up","name":"Vote Up","class":"Positive","hasReacted":false,"reactionValue":1,"count":0},{"tagID":13,"urlcode":"Awesome","name":"Awesome","class":"Positive","hasReacted":false,"reactionValue":1,"count":0}],"tags":[]}],"initialPaging":{"nextURL":"https:\/\/community.smartsheet.com\/api\/v2\/discussions?page=2&categoryID=322&includeChildCategories=1&type%5B0%5D=Question&excludeHiddenCategories=1&sort=-hot&limit=3&expand%5B0%5D=all&expand%5B1%5D=-body&expand%5B2%5D=insertUser&expand%5B3%5D=lastUser&status=accepted","prevURL":null,"currentPage":1,"total":10000,"limit":3},"title":"Trending in Formulas and Functions ","subtitle":null,"description":null,"noCheckboxes":true,"containerOptions":[],"discussionOptions":[]}">
Trending in Formulas and Functions
How to add date condition to IF/AND equation I have multiple IF/AND equations in a column formula. I want to add a condition to the IF/AND equations to apply before a certain date in a column(Date of Shoot). This is an example of one of the formulas: IF(AND(Talent@row = "Agency", Time@row = "Half", [Date of Shoot]@row < DATE(2023, 9, 16), 250 But is shows as…
Calculating Dynamicly Average Hi there , İ need a formula for a dynamic calculation , i added a sample as below , lets explain what i need ; At below table yellow field area contains August 2023 datas, white field area contains September 2023 datas , imagine that every each month , i amm adding new lines to this table also , So i have a dynamic tabe…
Trying to target entire column in a different sheet with a formula Hi, so what I'm working on is trying to automate status updates between different sheets. The first formula is looking at a status within the same sheet that the formula is written. This formula is working correctly and has no issues. However when including a nested formula to look at a different sheet, that is where that…