Hello,
Is there a way to write a formula that would populate a calculation based on a project's invoice frequency? I had to duplicate the Column titles in the first row so I could use those dates. I was able to get a result for a basic calculation, see below:
=IF(AND(YEAR($[Imp Date]@row) = VALUE(RIGHT([1/31/23]$1, 4)), MONTH($[Imp Date]@row) = VALUE(LEFT([1/31/23]$1, 2))), ($Rev@row * $[Share %]@row) / $[Total Invoices]@row, 0)
Now I am not sure how to make it skip certain months based on the frequency. I hope this makes sense.