Forum Discussion
Filling null cells from a different column
- 6 years ago
Yep, you are using space " " and blank doesn't have spaces, so try to compare to nothing between quotes "" it should work.
Any question, just let me know.
Regards,
Gian Carlo Poggi
Hi aharris15, your conditional column setup seems to be ok, and other way to get the Columns C value when Column B is null is creating a Custom Column with this code:
if
[Column A] = null
then
if
[Column B] = null
then
[Column C]
else
[Column B]
else
[Column A]
This should work, but one question regarding your conditional column, it should work as it is, so maybe the problem is about your nulls, did you confirm that Column A contains nulls instead of (blank) values? if you did, Could you send a sample of your data so we can help you to figure it out what is going on?
Regards,
Gian Carlo Poggi
- Anonymous6 years agoNot applicable
So my cells are actually blank - they do not have null in them. I tried putting " " instead of null but still no luck. Is there something else I need to put there instead?
- gpoggi6 years agoResponsive Resident
Yep, you are using space " " and blank doesn't have spaces, so try to compare to nothing between quotes "" it should work.
Any question, just let me know.
Regards,
Gian Carlo Poggi
- Anonymous6 years agoNot applicable
I was able to get that to work. Thank you!