Hello all,
I have a sheet that I'm trying to get the elapsed time in days from when a ticket was open to when it was closed. I am doing this using a second sheet, so the formula uses sheet references.
I am having trouble getting this to work when using a range of items. When I use the COUNTIFS function, using areferenced column name works perfectly. I'm however trying to get more data than just the total number, so a count doesn't do me much good.
My working formula, which only works when referencing a specific cell, is
=IF(AND({568 Nature Cell} = "Support", {568 Done Cell} = 1), (DATEONLY({568 Modified}) - {568 Created}), "Not done")
However if I change all of the references in that formula to the respective columns and not the cell itself, I get an "Invalid Operation" error.
Is what I'm trying to do possible? I've done some reading on the Collect function, but I'm not sure how the syntax of those ranges are supposed to be set, nor how to tie it into the above formula.
I would appreciate any help with this issue, thank you!