เครื่องคำนวณเงินกู้บ้าน

คุณกำลังวางแผนซื้อบ้านอยู่ใช่หรือไม่? ถ้าใช่ คุณน่าจะกำลังมองหาทางเลือกในการกู้อยู่ แต่คุณจะรู้ได้อย่างไรว่าธนาคารไหนให้ผลลัพธ์ที่ดีที่สุด

เครื่องคิดเลขสำหรับคำนวณเงินกู้บ้านของเราถูกออกแบบมาให้เหมาะกับการกู้บ้านในไทยโดยเฉพาะ คุณสามารถที่จะระบุค่าตัวแปรต่างๆได้ อาทิเช่น วงเงินกู้ อัตราดอกเบี้ยเป็นต้น

ธนาคารในประเทศไทยมักจะกำหนดอัตราดอกเบี้ยต่ำในช่วงสามปีแรก และมักจะมีอัตราดอกเบี้ยที่สูงหลังจากสิ้นปีที่สาม สาเหตุเพราะเมื่อสิ้นปีที่สามคุณจะสามารถทำการรีไฟแนนซ์ได้ ด้วยเครื่องคิดเลขของเรา คุณสามารถที่จะระบุอัตราดอกเบี้ยแต่ละปีในช่วงสามปีแรกและหลังจากปีที่สาม รวมไปถึงค่างวดในแต่ละเดือนในช่วงสามปีแรกและหลังจากนั้น ซึ่งจะช่วยให้คุณเห็นภาพทั้งหมดของเงินที่ต้องชำระและนำไปเปรียบเทียบเพื่อหาทางเลือกที่ดีที่สุด

หลังจากที่คุณกำหนดค่าตัวแปรต่างๆแล้ว คุณสามารถกดปุ่ม "คำนวณ" เพื่อให้ระบบทำการคำนวณแล้วแสดงผลสรุปของการกู้นั้นๆ รวมไปถึงตารางการชำระเงินกู้ในแต่ละงวด

ข้อมูลสรุปการกู้

ข้อมูลสรุปการกู้สามปีแรก

วงเงินกู้: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(inputs.amount)}}
วันที่เริ่มกู้: {{startDate.format("D MMM YYYY")}}
งวดการชำระครั้งสุดท้าย: {{threeYears.end.format("D MMM YYYY")}}
จำนวนงวดการชำระ: {{threeYears.months}} เดือน
เงินต้นที่ชำระแล้ว: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(threeYears.principal)}}
ดอกเบี้ยที่ชำระแล้ว: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(threeYears.interest)}}
จำนวนเงินที่ชำระทั้งหมด: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(threeYears.payments)}}
ยอดเงินคงเหลือ: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(threeYears.balance)}}
อัตราส่วนระหว่างดอกเบี้ยจ่ายต่อวงเงินกู้: {{new Intl.NumberFormat('en-US', { style: 'percent', maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(threeYears.interestToLoan)}}

ข้อมูลสรุปการกู้ทั้งหมด

วงเงินกู้: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(inputs.amount)}}
วันที่เริ่มกู้: {{startDate.format("D MMM YYYY")}}
งวดการชำระครั้งสุดท้าย: {{total.end.format("D MMM YYYY")}}
จำนวนงวดการชำระ: {{total.months}} เดือน
เงินต้นที่ชำระแล้ว: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(total.principal)}}
ดอกเบี้ยที่ชำระแล้ว: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(total.interest)}}
จำนวนเงินที่ชำระทั้งหมด: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(total.payments)}}
ยอดเงินคงเหลือ: {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(total.balance)}}
อัตราส่วนระหว่างดอกเบี้ยจ่ายต่อวงเงินกู้: {{new Intl.NumberFormat('en-US', { style: 'percent', maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(total.interestToLoan)}}

ตารางการชำระค่างวด

งวดเดือนที่ชำระ วันที่ ค่างวด ส่วนชำระเงินต้น ส่วนชำระดอกเบี้ย ยอดเงินคงเหลือ
{{row.months}} {{row.date.format("D MMM YYYY")}} {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(row.monthlyPayment)}} {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(row.principalPaid)}} {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(row.interestPaid)}} {{new Intl.NumberFormat('en-US', { maximumFractionDigits : 2, minimumFractionDigits : 2 }).format(row.balance)}}