Forum Discussion
Trying to change from text to number with a formula calculation
I am creating a spreadsheet for some cattle - if they weight 700 pounds or more they will be worth $1600 and if they are less than 700 they will be $1500...i have the formula working fine, however, the results of the formula won't let me calculate a total sum at the bottom as it won't recognize the results of the formula as numbers and I can't get it to - this would be only for the blue rows (not pink) but i want the pink and blue rows to total at the bottom
Don't use quotes around the values, and don't include the $ sign in the formula:
=IF(M5>=700,1600,1500)
Format the cell with the formula as currency - this will add $ in the displayed value.
2 Replies
Don't use quotes around the values, and don't include the $ sign in the formula:
=IF(M5>=700,1600,1500)
Format the cell with the formula as currency - this will add $ in the displayed value.
- wannabvet75Copper ContributorOh my goodness! You are amazing! Thanks so much for the help! I've spent an hour trying to fix this and with your help I had it fixed in 2 minutes!