Scenario: If any of the columns have a blank Status is "Incomplete" . Only when all columns are filled and have values, status is "Complete" .
=IF(ISBLANK([Date Requested]@row), "Incomplete")
=IF(ISBLANK([Item Category]@row), "Incomplete")
=IF(ISBLANK([Customer #]@row), "Incomplete")
=IF(ISBLANK([Item Number]@row), "Incomplete")
=IF(ISBLANK([Item Number]@row), "Incomplete")
=IF(ISBLANK([Updated Pricing]@row), "Incomplete")
=IF(ISBLANK([Date Requested]@row), "Incomplete"
=IF(ISBLANK([Revision Received]@row), "Incomplete")
Only when all columns have a value need to change status to complete. Please help . Thank you