I made an formula in an update statement in order to generate Targets according to a Date_Key. The table 'Test' exists of two relevant columns:
'Date_Key'(INT) and 'Target'(DECIMAL)
The logic I want to implement is as follows:
UPDATE Test
SET Target = 175+(2.879546*([Date_Key]-25))
It works but I would like three digits after the comma.
Can someone help me out?
Thank you in advance!