Sign in to join the conversation:
I am trying to give a percentage based on how 2 columns read. Column PassFailA and Column PassFailB. If both show Pass 100%, If A is Pass B is Fail or Vise Versa 50% and if both Fail 25%
Hello,
Thanks for the question. If I understand what you're looking to do correctly, this can be accomplished using a nested IF formula including the AND and OR functions. More on all of the available functions can be found here (https://help.smartsheet.com/functions), and we also have a blog post on how to build nested IF formulas which can be found here (https://www.smartsheet.com/blog/support-tip-build-nested-IF). Here's an example of how this could be written:
=IF(AND([Column PassFailA]@row = "Pass", [Column PassFailB]@row = "Pass"), 1, IF(AND(OR([Column PassFailA]@row = "Fail", [Column PassFailB]@row = "Fail"), OR([Column PassFailA]@row = "Pass", [Column PassFailB]@row = "Pass")), 0.5, IF(AND([Column PassFailA]@row = "Fail", [Column PassFailB]@row = "Fail"), 0.25)))
For this example I'm also using @row instead of the row's number within the cell reference. This will help make the formula more efficient as this sheet grows larger. More on @row can be found here (https://help.smartsheet.com/articles/2476491#row).
I've also included a screenshot of the outcomes for every scenario you listed. I'd also like to note that if either column is left blank, this formula will leave the % Column blank until both are set to either "Pass" or "Fail".
Hi! I'm fairly new to SmartSheets but have been trying a number of things that havent yet worked. I want to be able to show for each parent row, the number of child rows completed as a %. So for the parent row Process Overview there are 7 tasks and 6 tasks are complete so I want it to show as 90%. Can anyone help me?
Hello, I am trying to find the average audit score for a range of percentages between two dates. There are divider rows for organization by month. I have been trying to utilize the following formula but continue to get #DIVIDE BY ZERO for an answer: =AVG(COLLECT([Audit Score]:[Audit Score], [Date of Chat]:[Date of Chat],…
I'm officially stumped. I'm tracking Admissions Reps visits to schools, the types of visits and the amount of visits and inquiries. The columns are as follows: Created Date Rep Name Type of Event 1 - Dropdown: Tabletop, College Fair, Classroom Presentation, School Visit, School Tour District 1 - Dropdown with all Districts…