I have a spreadsheet with a "master sheet" and 7 other sheets.
Each team member are to input data into their own sheet. The master sheet will look at the other 7 sheets and take the data within the cells. Some members will not need to put data into the cells. In the "MASTER SHEET" it has spaces for the team members who haven't typed anything.
How do I collect all the data from each sheet and put it into the "Master Sheet" but I do not want any gaps from the cells that have no data in them.
I was thinking: =Member1!Q14&CHAR(10)&Member2!Q14&CHAR(10) etc.. However, this leaves gaps if a member does not enter data into the cell.
=Trim(Member1!Q14)&CHAR(10)&TRIM(Member2!Q14)&CHAR(10)or perhaps you need to make a if statement if(member... <> "", And so on . - Andreas