I am using a large function to pull together a list of names based on whether someone has provided an update. The formula that I am am using is basically…
=IF(Input from Cell X = "", [Contents from Cell X1], "") + ", " + IF(Input from Cell Y = "", [Contents from Cell Y1], "") + repeat.
This works but it gives me lists with a bunch of empty commas (, , , Contents from Cell X1, , , Contents from Cell Y1). I want to bring the comma and space inside the IF function so that I only get the comma and the space if I am adding text and otherwise there is just nothing.
Basically something like
=IF(Input from Cell X = "", [Contents from Cell X1] ", ", "")
This doesn't work though. I guess another way to ask this question is how to I append text to cell references inside formulas?
THANK YOU!