If all the relationships are 1-1, why use separate tables? - I can see that you have a lot of fields but don't think it totals more than 255 which is the limit for fields in a table and one of the reasons for doing so.
And if there
is a good reason for keeping separate, you should be linking on the ID, not your text field.
Either way, in addition to the 255 field restriction there is also a limit on total record size of around 4000 bytes (the size of a block on your disk). Your text fields all appear to be 255 chars length so you can only have around 15 fields of this size, let alone the other fields. So consider reducing them to a size more appropriate to the data (perhaps 14 for your NRP_Terdakwa for example). Or use a more efficient data type such as a single or double for numeric fields - a 14 character code will require 24 bytes as text, 4 as a single or 8 for a double. OK, you lose the preceding zero if there is one, but this can be overcome with formatting. See this link for data sizes
https://docs.microsoft.com/en-us/office/vba/Language/Reference/User-Interface-Help/data-type-summary.
Size also matters for efficient performance. Using a text field to link on means your need two indexes, one in each table. Per the above example, this means an additional 24 bytes for each index. The way indexing works, it picks up a block of index data from the disk and searches - if you are using text, it will pick up around 150 indexes (indexes also include a pointer), using a single it will pick up around 1000 indexes - simplistically around 6-7 times faster. And another reason for linking on ID, not NRP_Terdakwa
I would also lose the calculated fields - they are a convenience with penalties - penalties which you are now incurring. Calculate when you need to, either in a query or an unbound control on a form. Remember, tables are for storing data, not providing a view for users.
But I think you will also have an issue in that forms should be based on one table, not multiple tables. Redesign your form so that the linked tables appear in their own subforms - and ensure the subform linkchild/master properties are populated
Otherwise you will need lots of code to ensure the linking values are completed before you enter values in the sub tables - and even then may not be successful. If you want to try this route, you will need to bring through (for example) the NRP_Terdakwa field from tblBanding and in code, populate it in the after update event of the NRP_Terdakwa control or perhaps the form beforeupdate event