If I have something like this:
id date type location
1 1/2/2021 student Georgia
1 Maine
1 New York
2 2/20/2021 teacher Florida
2 Louisiana
3 2/15/2021 student New York
3 Maine
3 California
3 Florida
I want to copy the values in the "date" and "type" column based on the value for "id":
id date type location
1 1/2/2021 student Georgia
1 1/2/2001 student Maine
1 1/2/2001 student New York
2 2/20/2021 teacher Florida
2 2/20/2021 teacher Louisiana
3 2/15/2021 student New York
3 2/15/2021 student Maine
3 2/15/2021 student California
3 2/15/2021 student Florida
I know this has probably asked but I can't figure out how to ask the question. Thanks for your help!