You dont have to pass TagId because its computed as you have declared in table definition.
Try to execute This line
Insert into [Productsdata] ([TagId],[Name],[Address]) Values('1','name',11)
You will get this error
Msg 271, Level 16, State 1, Line 1
The column "TagId" cannot be modified because it is either a computed column or is the result of a UNION operator.
But if you execute this line one row will be inserted
Insert into [Productsdata] ([Name],[Address]) Values('name',1)
Result:

Thank You.