BusyBee123
New Member
- Joined
- Nov 1, 2022
- Messages
- 1
- Office Version
- 2021
- Platform
- Windows
I have two tables. My first one looks like this:
How do I make it look like this:
The second one looks like this:
How can I make it look like this:
id | District | DateSub | Data |
1 | Kent | 10/14/2022 | 6 |
2 | Kent | 10/16/2022 | 9 |
3 | Kent | 10/17/2022 | 10 |
4 | Olympia | 10/18/20222 | 3 |
5 | Olympia | 10/16/2022 | 5 |
6 | Seattle | 10/14/2022 | 9 |
7 | Seattle | 10/15/2022 | 7 |
How do I make it look like this:
id | District | DateSub | Data |
1 | Kent | 10/14/2022 | 6 |
5 | Olympia | 10/16/2022 | 5 |
6 | Seattle | 10/14/2022 | 9 |
The second one looks like this:
id | Gender | IsBillingual | PeffLevel |
1 | Male | Bill | L1 |
2 | Female | NotB | L2 |
3 | X | Bill | L3 |
4 | Male | NotB | L3 |
5 | Female | Bill | L4 |
6 | Female | NotB | L1 |
How can I make it look like this:
id | Group | PeffLevel |
1 | Male | L1 |
1 | Bill | L1 |
2 | Female | L2 |
2 | NotB | L2 |
3 | X | L3 |