I want to transform my data so that each instance of effective data is in a new field. I've attached test data below.
Start:
| Rule Type | Jurisdiction Type | State | Date Rule | Effective Date |
| Default | State | Kansas | Beginning | 01/01/2021 |
| Default | State | Kansas | Beginning | 01/01/2020 |
| Default | State | Alaska | Beginning | 01/01/2020 |
| Default | State | Alabama | Beginning | 01/01/2021 |
| Default | State | Alabama | Beginning | 01/01/2020 |
End:
| Rule Type | Jurisdiction Type | State | Date Rule | Effective Date 1 | Effective Date 2 |
| Default | State | Kansas | Beginning | 01/01/2020 | 01/01/2021 |
| Default | State | Alaska | Beginning | 01/01/2020 | |
| Default | State | Alabama | Beginning | 01/01/2020 | 01/01/2021 |