Hi There!
Below is a simplified version of my dataset that I am trying to transponse/simplify into a table:
| Record | F1 | F2 |
| 1 | Unit Number | Entity A |
| 2 | Preparer | John Doe |
| 3 | Data Submitted | 3/1/8/2022 |
| 4 | Unit Number | Entity B |
| 5 | Preparer | Bob Smith |
| 6 | Data Submitted | 4/22/2022 |
I would like my data to look like this:
| Record | Unit Number | Preparer | Data Submitted |
| 1 | Entity A | John Doe | 3/18/2022 |
| 2 | Entity b | Bob Smith | 4/22/2022 |
I think this is a simple solution but I am new to Alteryx and struggling with which tool to use here. Thanks!