I've created a column formula that returns a value from another column if it has a value in it; if that other column does NOT have a value, it returns a blank cell.
=IF(ISBLANK([Print Quantity (if known)]@row), "", [Print Quantity (if known)]@row)
The formula works just fine, but I want to be able to type in a value to the cell that came back blank. Is there a way to do that? I don't want to have to type into the cell being referenced (to populate the cell that returned blank) because it goes against the need for having two separate columns, which are needed.