Hello,
I am trying to get an auto generated number in Auto Number column. I cannot use auto number given that i have conditions to it. I want my Autonumber column to have a formula where it will create a sequential number based on the Hold Issuance date not being blank. I only want it to autonumber if the hold issuance date has a date in it.
=IF(ISDATE([Hold Issuance Date]@row), COUNTIFS([Hold Issuance Date]1:[Hold Issuance Date]@row, "<>"), "")
I used this formula and it works but i cannot make it a column formula due to the 1 being in it. Is there a formula i can use in the sheet summary that i can reference instead?