How to Split Decimal Number into Two Parts in Excel (Khmer)
Learn how to split decimal number into two parts (integer and decimal) in Excel step by step with simple formulas and Khmer video guide.
Hello everyone! Today I show you how to split decimal number into two parts in Excel step by step with easy formulas and video guide in Khmer language.
For example, if you have number 101.25 in cell A2:
- Integer part (Whole number):
101 - Decimal part:
0.25
Method 1: Get Integer Part (Whole Number)
To extract integer part only from number 101.25:
Use INT or TRUNC formula:
=INT(A2)
or
=TRUNC(A2)
Result will give you 101.
Method 2: Get Decimal Part Only
To extract decimal part only (0.25) from number 101.25, you have 2 easy options:
Option A: Subtract Integer from Original Number
=A2 - INT(A2)
Option B: Use MOD Function
=MOD(A2, 1)
Both formula will give you exact result: 0.25.
📹 Watch Khmer Video Tutorial
Watch video step by step below to see how to split decimal number easily in Excel:
💡 Quick Tip:
- If your decimal part show many digits like
0.250000000000001, you can format cell to 2 decimal places or wrap withROUND(A2 - INT(A2), 2).- Use
INTwhen working with positive number, but for negative number like-101.25, useTRUNC(A2)to get-101cleanly!
📚 Related Resources
Related Tutorials
Opens in new tab ↗IF vs Equal (=) vs EXACT Function in Excel (Khmer)
Learn the difference between Equal (=) operator and EXACT function in Excel for case-sensitive text comparison step by step with Khmer video guide.
How to Calculate Working Hours in Excel (Khmer)
Learn how to calculate total working hours, subtract lunch break, handle night shifts, and calculate total pay in Excel step by step with Khmer video guide.
How to Convert Number into Khmer Number and Back in Excel (Khmer)
Learn how to convert number into Khmer number and back in Excel step by step with simple custom format, formulas, and Khmer video guide.