April 8, 2008 at 9:36 am
Please, someone:-)
If i have the rate 0.5597% and want the yearly effective rate
How do i do that i t-sql
I now the answer, i looked in excel. It should be 6.9268%
Best regards
Stefan
April 8, 2008 at 10:15 am
Stefan Bengtsson (4/8/2008)
Please, someone:-)If i have the rate 0.5597% and want the yearly effective rate
How do i do that i t-sql
I now the answer, i looked in excel. It should be 6.9268%
Best regards
Stefan
I'm thinking that actually should be 6.92706%.
You have to apply compound interest rules to get there.
here is the formula as I understand it:
declare @pct float(53)
set @pct=.005597
declare @result float(53)
set @result=power((@pct+1),12)-1
select @result
----------------------------------------------------------------------------------
Your lack of planning does not constitute an emergency on my part...unless you're my manager...or a director and above...or a really loud-spoken end-user..All right - what was my emergency again?
April 8, 2008 at 2:06 pm
Thanks Matt!
That solved my problem
You are the best:-)
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply