Okay... here's my query:
This query works exactly as I need giving me a 4-point precision decimal for the last value in the select. I need to round that value down based on the 5th decimal place. I can't find anywhere how I can round down using sql...
If anyone can help I really appreciate it.
Code:
select tblPreGenTLL.RiskNumber, tblPreGenTLL.[Manual], cast((tblITMmaster.ITM * (tblManuals.[Base Rate] * [tblBWC-FeeCalc].[NG-Discount])) + ((tblITMmaster.ITM * (tblManuals.[Base Rate] * [tblBWC-FeeCalc].[NG-Discount])) * .1526) + ([tblBWC-FeeCalc].DWRFRate) + ([tblBWC-FeeCalc].[Add-DWRFRate]) + (tblManuals.[Base Rate] * .001)as decimal(18,4)) from tblPreGenTLL, tblITMmaster, [tblBWC-FeeCalc], tblManuals where tblPreGenTLL.RiskNumber = tblITMmaster.RiskNumber and tblPreGenTLL.[Manual] = tblManuals.ManualID and [tblBWC-FeeCalc].Active = '1' and tblManuals.Active = '1' order by tblPreGenTLL.RiskNumber
If anyone can help I really appreciate it.
Comment