More Posts
The diversity officer at my old company:

Additional Posts in Excel Genius
I have a field in excel that represents the GSID, that I want to concatenate to create a link. Example field GSID is 123-west and the link needs to be www.website/123_west.html for some reason using concatenate with left & right formulas to switch - to _ results in the field throwing an error. Anyone knows of a way to make this work?
New to Fishbowl?
unlock all discussions on Fishbowl.
Subject Expert
Repeat with me: NEVER merge cells on a calculation tab. Never! Repeat 3 times to be sure.
Now, a simple, non-VBA way to do it is:
=COUNTA(merged_cell_reference, adjacent_cell)
Explanation: if cell A1 is merged with cell B1, and you do =COUNTA(A1,B1), as long as the merged cell is non-blank, the output will be 1 if the merged cell is non-blank; and if the cells are not merged, and both are non-blank, the output will be 2.
P.s.:you can change to =COUNTBLANK() if you need the blank cells
You need to manually enter the reference since excel merged the cells
Yes! I saw this message late and this is how I ended up doing it:
There was no text within some of the merged cells as they are currently representing spaces within a location. The merged cells represent double spaces, the blank cells, whether merged or unmerged represent sold spaces.
I was able to get a total number after I wrote in the word “sold” in the blank cells then used the CountA formula.
PS, after much research I learned what a nightmare merging cells is soooo this’ll probably be the last project I work on where I do so
Thank you for your help!
Use a formula similar to this one. Use that function and insert the extra part at then end and I subtracted the extra cells that are counted in the merged cells.
Why don’t you just change it from merging 2 cells to align text across selection?
There is no text within some of the merged cells as they are currently representing spaces within a location. The merged cells represent double spaces, the blank cells, whether merged or unmerged represent sold spaces.
I was able to get a total number after I wrote in the word “sold” in the blank cells then used the CountA formula.
You could use the row formula to count the # of rows between 2 points?
Thank you everyone for your input!
There was no text within some of the merged cells as they are currently representing spaces within a location. The merged cells represent double spaces, the blank cells, whether merged or unmerged represent sold spaces.
I was able to get a total number after I wrote in the word “sold” in the blank cells then used the CountA formula.