Trying to put a value into a cell that is returned blank from formula.
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.
Best Answer
-
You cannot have a formula and manual entry within the same cell at the same time. My suggestion would be a "Manual Entry" column that you can type into when needed then in your above IF statement you can pull the manual if it isn't blank and the calculated if the manual is blank.
=IF([Manual Entry]@row <> "", [Manual Entry]@row, [Print Quantity (if known)]@row)
Answers
-
You cannot have a formula and manual entry within the same cell at the same time. My suggestion would be a "Manual Entry" column that you can type into when needed then in your above IF statement you can pull the manual if it isn't blank and the calculated if the manual is blank.
=IF([Manual Entry]@row <> "", [Manual Entry]@row, [Print Quantity (if known)]@row)
-
Thanks, @Paul Newcome ! That's what I thought. I do already have a manual entry column setup, so I see where you're going with this solution where it could then pull the most accurate data based on what's in each column. Thanks for this workaround.
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!