I am trying to compile metrics and get them to auto-update to reflect the values of a drop down. For instance, if the drop down has options like "Physical Exam", "Digital Exam", "Advanced", I'm building columns in my metrics sheet to tabulate the totals for each using countif statements (for each respective month). E.g.:
=COUNTIFS({Exam}, @cell = "Digital Exam", {Date}, AND(IFERROR(MONTH(@cell ), 0) = MONTH([Start Date]@row), IFERROR(YEAR(@cell ), 0) = YEAR([Start Date]@row)))@cell
I would like to find a way to make the formulas robust such that revisions to the drop-down list options will automatically update. So if "Digital Exam" gets updated at a later date to "dig. exm", the formula will automatically update as well.
The only thing I can think of to do this is if I were able to populate the drop-down options in a range of cells and then have the formulas pull from within that specific range. I know you can do that type of thing thing in excel, but I'm uncertain if you can do that in Smartsheet. From looking online, it seems like DataShuttle might allow that type of thing, but I only have an Enterprise account.