• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

Excel formatting question?

tilldeath

New Member
Joined
Feb 8, 2011
Messages
200 (0.04/day)
So I have a total amount in cell D16, then below that I need to input a formula that is 1/4 of cell D16. What do I enter here? =D16/.25??????? It gives me a fractional value and I need it in decimal Ie.106 7/8 I need it to come out 106.875 with it rounded to 106.88. Any help?
 
what about format cell>number and setting number from that
 
This should work:
Code:
=ROUND((D16/4), 2)
 
also, your math is wrong. It would be d16*.25
 
D16*.25

Your welcome
 
thx guys, =D16*.25 worked fine but kept giving me a fractional answer until I changed the formatting to dollars and then it converted it to decimal. Feel semi retarded:nutkick:
 
Back
Top