Good afternoon everyone,
I hit a bit of a snag and I am curious to know if I may get some help.
I have a tracker that we are using Smartsheet for and based on the type of item that is added in, only certain check boxes are required to complete the work.
Originally I had done a massive COUNTIF formula where I had typed up each one of the types and basically said that if the checkbox is true and the type is not x, y, and z, then count it. This initially worked but I was hoping to make it a little easier in case someone else needs to make changes in the document as requirements may change in the future.
I thought about creating a support table to make it a little easier and added columns that mirror the source table but note whether or not something was required. I hoped that I could combine a VLOOKUP with the COUNTIF but it is not counting the checkbox. This is the current formula I am trying:
=COUNTIFS([First Approval]@row, True, (VLOOKUP(Type@row, {Support Table}, 2), "Required")
If worst comes to worst, I can create another set of support columns to pull the VLOOKUP and then do a COUNTIFS(Column1, True, Column2, "Required") but that'll essentially double all the columns we have already so it isn't my first preference.
Anyone have any thoughts?