Oh, wait, I remember why I thought I needed it. Its because of the way the two table are related. The Awarded Grants table and the Fiscal Funding table were related by a one-to-many relationship using AwardedGrantID (in the Awarded Grants table) as the primary key and then using that number as the foreign key in the Fiscal Funding table. But when I went to create a form that will be used to populate the two tables, users had to fill the Fiscal Funding table using the AwardedGrantID numbers (which is the same problem I was facing with InstitutionID numbers). So I thought to create the junction table to eliminate the use of the AwardedGrantID on the form but to keep the relationship between the two tables.
Is this thought process correct?
Is this thought process correct?