Whole Numbers To Decimals & Calculate

Jul 2, 2007

I want to convert the number in a cell, G7, from a whole number into a decimal and then divide that decimal into a whole number in cell E7 and give me the quotient in cell E8.

ie:312 = 6.0
286 = 5.5
260 = 5.0
234 = 4.5
208 = 4.0
182 = 3.5
156 = 3.0
130 = 2.5
104 = 2.0
78 = 1.5
52 = 1.0

Could this also be done with the entire range of numbers from 312 to 52 and giving decimals of 6.0, 5.9, 5.8 etc.

View 5 Replies


ADVERTISEMENT

Sort Mixture Of Numbers And Text Using Numbers And Decimals

Nov 13, 2013

I am looking for a VBA to sort rows which include actual numbers and text representing decomposed CTQs (or procedures in IT development)

Code:

Col A Col B
1Billing Accuracy
2Billing Time
3Credit Check Accuracy
4Credit Check Time
2.1Bill preparation

[Code]....

This is the order in which the data is copied and saved from worksheets in which they are developed. Note that 3 rows (8.1.2.1 through 8.1.2.3) are below 8.1.3 (because the three come from Worksheet 8.1.2 which came after worksheet 8.1). The first four rows came from a Top Level Worksheet. I would like to see them intermixed but in proper order.

View 9 Replies View Related

Numbers Have Too Many Decimals

Feb 8, 2009

A spreadsheet created by exporting from QuickBooks as a .IIF file is opened in Excel 2003.

A macro multiplies a cell value and returns 1.77999997138977 rather than 1.78. The 1.78 is required for importing back into Quickbooks.

Part of the code is: ...

View 13 Replies View Related

Recognising 1 Or Decimals As Numbers

Dec 10, 2007

I have a weird problem with Excel. It recognises all numbers as numbers but excluding the number 1. It is only recognised as text as well as a decimals, for example 3.4. So every time I try and add these values up it completely ignores 1 and decimals.

Have I modified a setting?

View 10 Replies View Related

Numbers Are Converting To Decimals

Dec 6, 2007

I received a complaint from one of my colleague that he is facing sudden problem with Ms-Excel(2002)
The problem is When he feeds number 2 in to a cell it automatically converts in to 0.02. I tried using "Decrease decimal" and "format cells" option and even through uninstalling office and reinstalling a different version but the problem still continues.

View 2 Replies View Related

Numbers Changing To Decimals

Apr 4, 2008

I have received an excel file from an external source. Every time I change a number in a cell it reverts to a 2 decimal number. eg. I type in 8710 and it converts the value to 87.10. I have looked at the number formats, cleared the numbers format but I keep getting the same result. I have also e-mailed the file to someone else and everything is ok on their computer. Is there a property in the excel program that I need to change?

View 3 Replies View Related

Lookup Whole Numbers From Decimals

Aug 8, 2008

I 'm not sure why my custom function "minimize" is not working... I tried to do this with one of excels built in functions and would prefer a solution that way, but had to go the VBA route in the mean time. x and theta are paired together and I'm trying to reduce a select number of values x by their corresponding ratio.s It's corresponding ratio is determined by what degree value theta corresponds to. I wanted to do an if statement, but got confused...

=if((B2>=$J2)*(B2<$J3)) , A2*K2 , if((B2>=$J3)*(B2<$J4) , A2*$K3 , if((B3>=$J4)*(B3<$J5) , A3*$K4, .... etc. etc. etc........................

View 2 Replies View Related

Convert Numbers With Decimals To Percentage

Nov 11, 2008

I have a spread sheet with over 200 numbers like 3.3, 4.5, 6.6 and so on. Is there and easy way to convert them to Percentages?

View 2 Replies View Related

Cell With Name, But Want To Remove Everything Else, Numbers, Decimals Etc.

Feb 25, 2009

I'm trying to clean up a very large list of last names. Only one individual cell, but that cell includes numbers, decimal points, and spaces inbetween the numbers. All I want left in the cell is the last name. I have just under 100,000 to do! How would I go about this? Using Excel 2007.....

View 2 Replies View Related

Converting Hours To Numbers, Decimals

Nov 10, 2009

How do I convert hours into numbers and/or decimals?

Example:
Column A Column B
---------- -----------
30:05:00 to 30.05
26:10:00 to 26.10
262:47:00 to 262.47

Figures under Column B refer to info that I would like to get.

View 4 Replies View Related

What Numbers Have No Decimals In About 500-1000 Cells

Mar 17, 2009

I use a worksheet full of formulas to know what divisors a number have, but i need to see what numbers have no decimals in about 500-1000 cells. Is there a formula whitch computer can use to see if it shows a number or not (if a number have or dont have decimals)?

View 2 Replies View Related

Formula To Delete Whole Numbers But Leave Decimals?

Apr 22, 2014

I've got a spreadsheet that's basically a large list of numbers, both whole and decimal. For example, let's say this is in cells A1-A5:

4
0.65
1.34
3
8.2

Is there a formula to get rid of all of the whole numbers but leave the decimals? (What I mean by that is I don't need 4 or 3 as they're whole, but I need the decimals to be left alone).

I know it's probably a really awkward question but I have over 2,000 lines to go through, it will take a long time to do manually.

Perhaps if it's not possible to a formula to delete entries, maybe just make all whole numbers say something like "NO", so that I can sort the column in A-Z order and delete all of the 'NO's quickly by highlighting them all together.

View 5 Replies View Related

Cell Format: Only Numbers (no Date) With Any Amount Of Decimals

Sep 8, 2009

I need a cell to restrict the input:
-Only numbers are allowed.
-No date posible.
-Any amount of decimals (they must all be shown in the cell).

I tried using the data validation and using the IsNumber() to restrict any non numeral input. The problem with this approach is that if the user enters a date; it apprears as a date format (eg: "5.May"). I'm using an european excel, where the decimal separator is a comma instead of a point; so if a user accidentaly types "5.5" instead of "5,5"; the cell will show "5.May".

I also tried the cell format/number/number format. The problem in here is that I dont know how many decimal positions will the input number have; and I need them all to be shown.

View 7 Replies View Related

Excel 2003 :: Concatenate Formula With Numbers With Decimals

Jul 12, 2012

I'm using excel 2003 and have a problem regarding some code.

Dit(a, b) = "=" & Hit(a, (d - 12 - e) + f) & "/" & (Pro & ".NrE.sol")

Where "Hit(a, (d - 12 - e) + f)" can be numbers with decimals.

When I run the code the result is nothing, unless the number is a number without decimals.

If I use just "Dit(a, b) = Hit(a, (d - 12 - e) + f)" it shows the right number.

View 2 Replies View Related

Convert Degrees Minutes & Decimals Of A Minute (12° 34.567') To Degrees And Decimals Of A Degree (12.57611°)

Oct 29, 2008

I am trying to convert Degrees Minutes & Decimals of a minute (12° 34.567') to Degrees and decimals of a degree (12.57611°). I have the formula to convert latitude, that is two digits, but it doesn't want to work with longitudes, three digits. (see attachment). This is the formula that I am using:

=IF(A2="","",(INT((LEFT(A2,3)+MID(A2,4,6)/60)*100000)/100000)&"d")

View 2 Replies View Related

How To Calculate Every Different Way To Sum 100 From Certain Set Of Numbers

Mar 8, 2013

How to create scenarios where excel will select all the possible ways to sum your data set to a specific number?

Example:
Data Set: (20, 25, 18, 40, 23, 22, 73, 7, 38, 28, 52, 96, 4, 99,2)
Way to create: 100

Answer 1: 25, 73, 2
Answer 2: 38, 2, 40
Answer 3: 96, 4

Is there a function or data structure in order to complete this?

View 8 Replies View Related

Formula To Calculate Best Of Three Numbers

Jan 22, 2009

how to calculate the best of three numbers from 5 numbers in a row?

I want to know the exact formula for this.

View 9 Replies View Related

Calculate Different Numbers Appearing More Than Once?

Apr 16, 2012

I have a work sheet with multiple columns and rows. In one column there is unique number which is appearing in multiple rows but it is appearing in different rows more than once like this:

ColumnB
KA0012
KA0012
KA0013
KA0013
KA0013

Now i want to calculate this e.g KA0012 appearing twice as one number similarly KA0013 appearing thrice as one number how can i do it?

View 2 Replies View Related

Calculate 17 Numbers Over 25 Cells

Sep 23, 2013

I am trying to generate a formula that will add the last 17 cells over 25 cells worth of data. If there is nothing entered in one of the cells then the formula should add the next cell.

i.e. column Z needs to add A1:Y1 but only add the last 17 cells that have a number in it so this should add I1:Y1 to give 17 cells worth of data. BUT if for example L1 and P1 are zero, then column Z needs to add G1:Y1, still giving 17 cells worth of data.

View 5 Replies View Related

Calculate Role Over Numbers?

Apr 10, 2014

I am calculating totals off a meter that roles over at 999999. Is there an easy way to have it auto calculate the total if my beginning reading is 994419 and my ending reading is 002146.

View 1 Replies View Related

Modify To Calculate Numbers Only

Aug 14, 2008

I'm using sum to calculate numbers can I modify it not to calculate numbers? like it'll return blank or something else. Because it calculates alphabets in a row and returns a 0.

tSumthing = "=SUM(RC4:RC[-1])"

then based on the 0's I got above, it'll delete the row. I got diffculty modifying the formula below.
Columns(1).SpecialCells(xlBlanks).EntireRow.Delete

View 9 Replies View Related

Calculate Written Numbers

Dec 30, 2006

Whilst I was searching through the channels on telly the other night I came across a 'Quiz Call' channel where you had to add ALL the number within a certain sum (see sample) Sixteen minus five times seven multiply by nine add twelve

You not only have to do the sum you also have to add in all the less obvious numbers like the Six within Sixteen, plus also all the Roman numbers in each word like the I, X, & IX within the sixteen. I've done a small example to show what I mean, but I don't have any idea how to create a formula that will add up all of all of the permitations of roman numerals within each word.

View 9 Replies View Related

Calculate Time From Whole Numbers

Apr 18, 2007

It is quicker and easier for me to enter times as whole numbers.

I tried to Catinate the number and enter the ":" in the middle. Example
I enter 815 and then =":" &RIGHT(a1,2) and get :15 but how do I add the 8 and convert the new number to time?

View 9 Replies View Related

Cannot Calculate Cells With Numbers

Apr 15, 2008

I really didn't want to create this thread, but this is really bugging me and I have had asked for assistance with this. I have tried to bump this in March and again last week, I have given more than 48 hours for a response, but I am seeing that the view counter is increasing so slowly, it was at 84 when I 'bumped' and I am not sure if someone is able to help me as the thread is moving further down the line.

I have not had any trouble with what I have used in over a year, I have had used Vlookup religously for 2 years, and for the last 3 months, I have encountered this problem. Didn't think anything of it the first time it happened. It was explained that there was a space in the cell, which is why the formula did not find it. What's strange is that it only happens on one cell. I haven't determined if it is the exact same cell reference, but I am researching that.

The formatting is the same, in both sheets. Is there some way to vlookup look up the value of the contents as seen?

View 9 Replies View Related

Get Cell Address And Calculate Row Numbers?

Nov 30, 2012

Today I have a project as follows:

I have value1, search value1 in a row, if found get cell address and store in cell10. Then value2, search in the same row, if found get cell address and store in cell11. Then calculate number of rows between cells with addresses in stored in cell10 and cell11.

How do store the addresses and how to calculate this number of cells?

I need that number to use in next FOR loop.

View 2 Replies View Related

Maths / Calculate Scale Of A Set Of Numbers?

Dec 11, 2012

I have a need to work out a scaled trend 1 - 10

for example if I have the following data set:

Sales
Jul-12
Aug-12
Sep-12
Oct-12
Nov-12
Dec-12

Product A
37
28
9
10
3
3

[code]....

View 4 Replies View Related

Calculate Percentage Of Positive Numbers Only

Jun 28, 2007

I am trying to find a formula to calculate the percentage of the positive numbers in a column. For example, if I have a column that has positive(green) numbers and negative(red) numbers in the cells to show over daily goal or under daily goal, and I want to at know what percentage of all the numbers are the positive ones.

View 3 Replies View Related

Calculate Numbers Required For X Percentage

Aug 14, 2007

what I'm trying to do.

Background:
I play a game that requires 5 members to play, however you can have more then 5 members on the team. In order for a player to receive points for playing they must have played at least 30% of the total games played. The problem for me is when trying to figure out how many games someone needs to play to get to 30%, the total goes up as they play those games.

What I would like to accomplish:
I'm looking for help on a formula that would figure out how many games a player would need to play to get to 30%. I have a column that is total games played, %of games played by player, games played by player, and games needed to play to get to 30%. Basically the user would enter the # of games played by each player, and the total games played overall for the team for that week, the spreadsheet would then show the # of games each player that isn't above 30% would need to play.

I tried to make the question as clear as possible, if anyone needs clarification,

Originally Posted by shg
Welcome to Oz, Basca

spreadsheet with a representative sample of your data?

Games Played
Player 1 20
Player 2 7
Player 3 13
Player 4 20
Player 5 13
Player 6 13
Player 7 7
Player 8 7

Total Games Played20

View 9 Replies View Related

Calculate Whole Numbers To Percentages With Conditions

Sep 8, 2007

I wish to write an "IF" formular to express a row of numbers in the way I wish to display them in accumulative fashion. 1 upto and including 9 = 1% ...

View 9 Replies View Related

Calculate Average Where All Numbers Equal X

Dec 7, 2007

I have done is created an Officer Evaluation Form in Word for my Police Chief and the Scores for the different observations are: N/A, 1, 2, 3, 4 and 5. If for example there are 4 observations and one of the observations is "N/A" for not applicable or not observed and the rest are all 5's I want the formula to ignore the field(s) with the N/A and still come up with an average of 5. The way I have it set up now which is: =AVERAGE(KOW1,KOW2,KOW3,KOW4) it comes up with an average of 3 when I put a N/A in field KOW1 and all 5's in KOW2-KOW4.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved