MurdochQuill
Board Regular
- Joined
- Nov 21, 2020
- Messages
- 84
- Office Version
- 365
- Platform
- Windows
Hi all,
I'm trying to copy according to yes/no rules to another sheet. When I copy, I want to get rid of the blank spaces between outputs, but not have them duplicate either. Anyone know how to do this?
Here's what I have so far:
First sheet with raw data:
Destination sheet with outputted data:
However I would like it to format like this:
I'm trying to copy according to yes/no rules to another sheet. When I copy, I want to get rid of the blank spaces between outputs, but not have them duplicate either. Anyone know how to do this?
Here's what I have so far:
First sheet with raw data:
Book2 | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | Name | Description | Type | Code | Method | |||
2 | Saturn | Large | Gas | GLS-01 | Yes | |||
3 | Ceres | Proto | Small | SM-01 | No | |||
4 | Earth | Inhab | Med | EARTH-00 | Yes | |||
5 | Earth 2 | Uninhab | Med | EARTH-01 | No | |||
6 | ||||||||
7 | ||||||||
8 | ||||||||
Sheet1 |
Destination sheet with outputted data:
Book2 | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
6 | Name | Description | Type | Code | Method | |||
7 | Saturn | Large | Gas | GLS-01 | Yes | |||
8 | ||||||||
9 | Earth | Inhab | Med | EARTH-00 | Yes | |||
10 | ||||||||
11 | ||||||||
12 | ||||||||
Sheet2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
A7:F7,A9:F12,A8:D8 | A7 | =IF(Sheet1!$F2 = "YES", IF((Sheet1!A2)="","",(Sheet1!A2)),"") |
However I would like it to format like this:
Book2 | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | Name | Description | Type | Code | Method | |||
2 | Saturn | Large | Gas | GLS-01 | Yes | |||
3 | Earth | Inhab | Med | EARTH-00 | Yes | |||
4 | ||||||||
5 | ||||||||
Sheet2 |