I have columns Start Month and Finish Month, formatted as 1-2021, 2-2021, etc. I am trying to automatically populate an equally divided cost across my month columns based on the duration between the Start Month and Finish Month. I have a helper row at the top of my sheet under each month column to reference in my formula, since Smartsheet does not allow you to reference the name of a column. My formula follows:
=IF(OR([Jan-2020]$1 >= $[Start (Month)]@row, [Jan-2020]$1 <= $[Finish (Month)]@row), $[PO Cost]@row / $[Duration (Months)]@row)
The problem is Smartsheet does not seem to answer to my ranges because the Start Month, Finish Month, and helper row are not formatted as Date. For example, Smartsheet cannot determine that 1-2020 is not greater than 10-2020 when I drag the formula across the row. I can format my Start/Finish Month columns as Date, but I cannot do the same to my helper row; therefore, I still have a disconnect in my formula. Any feedback is greatly appreciated! Thanks!