Scale Differs From One Computer To Another

May 9, 2014

Here's the scenario. A co-worker and I access the same file from the same online database and download it in the same manner. We have the same version of excel. We then open these identical files, we run a formatting macro (identical), but when it comes time to set the page breaks in order to get the items to print on the same page I have to increase a columns width to make it fit on one page and yet it still doesn't match theirs. It appears to have a different scale but I'm not sure of the option difference between our machines. I don't know how it could be the printer since it physically gives her different page break option than what mine does.

View 1 Replies


ADVERTISEMENT

Convert Time On Scale Of 100 To Scale Of 60?

Feb 1, 2013

How can we convert time on a scale of 100 to a scale of 60?

View 3 Replies View Related

Pivot Table Data Size Differs

Feb 20, 2008

I have all of my pivots all set up and all of my charts running from them.

My challenge is in pasting in the new data every day into the master Sheet BECAUSE, in order to group the dates (from format 20/02/08 into Month and Years in the pivot) you have to 'WRAP' the data, instead of simply blocking in all of the columns......

The challenge is that everyday, the data size differs, e.g; one day it might be 2000 rows, and the next 22,000 rows.

SO,,,,, BECAUSE I HAD TO 'WRAP' THE DATA (IN ORDER TO GET THE DATE FORMAT I NEEDED) >>>>> HOW DO I GET THE PIVOTS TO CALCULATE ONLY USING THE CHANGING AMOUNT OF ROWS

View 9 Replies View Related

Highlight Cells If Data Differs By Using Conditional Formatting

Feb 6, 2014

Refer to attached sheet. I have 2 sets of data to compare.

B4:H30 and K4:Q30

Compare B4 with K4,C4 with L4 and so on.

If any data is not equal then highlight.

Compare Data.xlsx‎

View 3 Replies View Related

Automate Text File Imports Where Text Differs

May 5, 2008

I am trying to automate in VBA the process of importing of txt file to Excel range. The columns widths are not static. So I can't use recoded code of Text to Column wizard process as columns alignment arguments, (ie FieldInfo:= Array(Array(0, 1) would need to be changed daily. I have also tried to import the text in one column and then apply a code of TextToColumns to automatically split the text by multiple columns. But some of the text would be moved to the left under wrong column titles. I think this is because the text is not tab or comma delimited. It's just aligned using multiple spaces.

Is it possible to write a code to split the text by columns based on alignment of 2 first rows. For example, import rows 6 and 7 from the text in one column, then apply texttocolumn method like this:

.TextToColumns DataType:=xlDelimited, consecutivedelimiter:=True, Space:=True

Then, based on this alignments take arguments for the Open File method like this:

Workbooks.OpenText Filename:= _
"filename", Origin:=xlMSDOS, _
StartRow:=1, DataType:=xlFixedWidth, FieldInfo:=Array(Array(0, 1), Array(10 _
, 1), Array(20, 1), Array(31, 1), Array(39, 1), Array(48, 1), Array(57, 1), Array(66, 1),Array(75, 1)), TrailingMinusNumbers:=True

View 9 Replies View Related

Cell Value Differs From Real Cell Value

Mar 13, 2014

I have 1 column that contains numbers, for example:

0.50
0.655
0.7898

But in the formula bar, for the first row (0.50), I get 0.499999999999. Why does the cell value differs from the value in the formula bar?

I need to format that column, so that every value contains 9 characters and is rounded. For example, 0.50 needs to become 000000.50

I already have:

Dim rCell As Range
Dim rRng As Range
Set rRng = ws.Range("G2:G999")
For Each rCell In rRng.Cells
If rCell = "" Then Exit For
rCell.NumberFormat = "0000000.00"
rCell.Value = WorksheetFunction.Round(rCell.Value, 2)
Next rCell

And it works! The value in the cell is 000000.50! But when you click that cell, the value in the formula bar is 0.5, so when I export to .txt file, I get 0.5 instead of the 000000.50 that the cell is showing?

View 9 Replies View Related

Scale In X Axis

Apr 12, 2007

The scale on our chart in the X axis is mandating a numeric number. It is showing "39200" instead of 4/28/07. In any event, we would like to have 4/9/07 -- the last date we have data for and the last date that we have referenced on the X axis.

The chart is in the attached chart.xls and the data is in the attached chart.xls

View 9 Replies View Related

Sliding Percentage Scale

Jun 18, 2014

A set low number of 100 is in cell B4, and a related set high percent of 18% is in cell B6.

A set high number of 1,000 is in cell D4, and a related set low percent of 14% is in cell D6.

In cell B8 a manual number will be typed between 100 and 1,000.

In cell B10 we want a formula that will roundup a percentage number between 14% and 18% depending on the number inserted in B8.

View 7 Replies View Related

Using IF Function To Create Scale

Jul 23, 2014

I am trying to create a scale using IF functions in Excel.

I have a row of numbers that I want to convert to my scale. My scale is fairly simple, less than 1 =1 and more than 10 = 1
After that, any number between 1-2 gets a 10, any number between 2-3 gets a 9, any number between 3-4 gets a 8, etc.

So, what I have done is take a logic if-then function and applied it to my row of numbers. It looks something like this:

=IF(2<D2<3,9)

However, this doesn't work. I have a number (2.55), and instead of showing a 9, it says FALSE. I am pretty sure 2.55 falls between 2 and 3 on the scale. Why won't it work?

Also, is there any way to create a function where I could put each of my if/then functions to create my whole scale? Right now I just have 10 separate columns for each number on my scale.

View 1 Replies View Related

Scale / Resize Image With VBA?

May 1, 2014

I would like to scale an image to 124% how do I do that

View 1 Replies View Related

How To Set Auto Scale Mode To DPI

Feb 14, 2014

My display scale is 125%. A college's is set to %100. This causes errors when I place Shapes to saved locations, .Top & .Left programmatically. Based on Google searches, it appears that setting the auto scale mode to DPI may solve this problem. How do I set it?

View 5 Replies View Related

Price Movment On A Scale

Jan 26, 2009

I have a list of items that each one has starting price, demands and current price. Current price changes by demands according to pre determined scale. Demands values are entered manually by user. I’m looking for a formula that will calculate current price automatically according to the scale & demands. I cannot know what will be the amount of demands (it could be 0 or 5000...) but I do know that demands are sequential integer numbers, positive or negative. I also don’t want it to exceed the minimum and maximum value that determine by user. I think the attached file will explain well than what I’m writing.

View 5 Replies View Related

Update Chart X Scale With VBA

Feb 16, 2012

I am using a VBA macro which performs a Yahoo webquery to obtain stock data. After the data are downloaded, a chart is updated with the new data.

The current macro updates the scaling on the price axis just fine, however, if I change the time frame the x axis, i.e, time/date axis is either spread out to far or jammed up.

The code for re-scaling the the y axis is shown below:

Code:
Sub UpdateScale()
Dim ChartVar As Chart
Dim lMax As Long, lMin As Long
On Error GoTo ScalingProblem
'Assigns the values in the Min and Max ranges to variables.

[Code]....

Any similar sub that would also rescale the x axis as needed when the data intervals are changed?

View 6 Replies View Related

IF Statements- SLIDING SCALE

Oct 3, 2008

I AM TRYING TO WRITE A FORMULAE BASED ON THE FOLLOWING SLIDING SCALE.

0 - 49.99 = 9.9%
50 - 599.99 = FIRST 50 @ 9.9% (4.95) THEN AT 5.8%
600 ABOVE = FIRST 50 @ 9.9% (4.95) + 50 - 599.99@5.8 (32.45) AND THEN 600 ABOVE AT 1.9%

this is what i came up with, but it is not excepting the formulae.

=IF((C4

View 9 Replies View Related

Z-Transformation (scale My Data)

Oct 14, 2008

My question is that i have to scale my data.. Can i do Z-transformation..
Is there any inbuilt function or shall i have to write Code,

View 9 Replies View Related

Calculate On Sliding Scale

Nov 19, 2006

Calculate the intensives to be paid to a loan officer based on the number of cases he brings , according to the following :

the first 10 cases 0
from 11 to 15 cases 6 pounds
from 16 to 20 cases 8 pounds
from 21 cases to more 10 pounds

so I need to put the total number of the cases , the loan officer brought in one cell, and this value to be processed and splitted to the segments above , and multiplied with adjacent pounds sums , and finally calculate the total of theintensive to be paid.

View 9 Replies View Related

Scroll Scale Of Graph

Dec 7, 2006

I have a big set of data, where I requires to zoom in to view the details of the graph (by scaling the X and Y axis). I am thinking of a graph that can use 4 scroll bar to control the zooming. 2 for each axis, where one control the difference between the maximum and minmum value (Zooming effect, minimum value always the same), and one to scroll the range of the data without zooming, (maximum - minimum) always the same.

View 5 Replies View Related

Grey Scale Text

May 15, 2007

We are trying to print grey scale text. It will only print grey scale when we print in colour and not in black and white?

The images and line fills we are using are printing in grey, just not the text.

We are using excel 2003. Both word and publisher print grey scale?

View 3 Replies View Related

Scale Chart Series To MIN & MAX

Sep 26, 2007

I have a Scatter chart that plots a simple XYScatter plot. The data for this plot can be very wide ranging, and for that reason, I use AutoScaling to scale the axes. Nine times out of ten, it works just fine, but it seems that when the X data ranges from about 5200 to 7200 +/-, the autoscaling does not calculate well (example attached).

Autoscale range will go from 0 to 8000, leaving a large area of unplotted graph space.

I thought the original issue was that I may be plotting zeros or blanks, but I've eliminated that problem. I have yet to find another range of values that causes it, but I'm sure there's some. What is it about the way that Excel calculates its AutoScaling that I'm missing?

What do you all recommend to eliminate this problem? Manually scaling it is not really an option in this case, as I want this to be completely transparent to the user for ANY range of data.

View 9 Replies View Related

Get Computer ID

Mar 5, 2008

Is there a code available that can be used to get the user's computer ID number (Not Computer Name)? I'm using a password generator to randomly generate a password and I would like to use this unique password with the user's Computer ID.

View 9 Replies View Related

Color Scale Conditional Formatting

Jun 11, 2014

Color Scale Conditional Formatting

I want to use formula to define Minimum, Midpoint and Maximum in the color scale, but am not able to achieve it.

My Criteria are as follows;

Minimum: Less than equals to 50%

Midpoint: More than 50% less than 70%

Maximum: More than 70%

I need this formula for Accuracy column only.

View 3 Replies View Related

Calculate A Linear Sliding Scale

Oct 9, 2008

I need a formula to calculate a linear sliding scale from 10%-30% (no higher, no lower). Based on the data in the below chart, if the GROR (let's say this is known and the result resides in cell A1) is less than or equal to 0.0% the payout % is 10.0% and gradually increases as the GROR increases.

The payout % is capped at 30% which is if GROR is 18% or greater. Below are just some examples of how certain thresholds should calculate.

GROR 0.0%5.0% 8.0% 11.0% 14.0% 18.0%+
payout %10.0%10.0%14.6%19.2%23.8%30.0%

View 2 Replies View Related

Same Color Scale Looks Different In Multiple Worksheets?

Mar 22, 2013

I have a row containing numbers from 1 to 4 and I want to use a color scale to differentiate between the cells easier. The problem is, that I have multiple sheets and in some sheets, I get a different color scale, even though I use the same command and color scale.

I've already removed the "conditional formatting" on all worksheets, but the problem isn't resolved. Is there another way to clear the formatting of a cell, besides going to the "Conditional Formatting" tab and clicking "delete rule for entire sheet"?

View 3 Replies View Related

Scale Currency In Multiple Cells

Nov 19, 2009

I have a spreed sheet with multiple cells with currency values. I would like to be able to scale all the values by given percentage if possible.

View 3 Replies View Related

Having A List Of Macros Available To Use On A Global Scale

Jan 27, 2010

I have never used or created a Macro before. I have worked out how to record one etc. What I would like to know is, is it possible to design a macro and whenever an excel workbook is opened it will list all the Macro's you have created so that you can just action on any sheet or work book.

View 8 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

Non Linear Scale Applied To Data

Mar 8, 2008

in this example below i need to work out what the divsor would be for values inbetween the data?

View 9 Replies View Related

College Gradebook Average Scale

Oct 16, 2009

I have the following grade scale

F = 0%, D = 60%, D+ = 65%, C = 70%, C+ = 75%, B = 80%, B+ = 85%, A = 90%, A+ = 95%

and I have these students total marks

84%
70%
72%
78%
81%
71%
76%
72%
74%
77%
72%

I want the student who took 84% which is the best to take A+

On other way, I want these marks to be on average instead of the standard scale

View 9 Replies View Related

Rank Values Into Top/Bottom X Scale

May 21, 2008

I am creating a Power Poll Spreadsheet for a Fantasy Football League, and I need to create a code that will take the win/loss columns and in a new column assign rankings so that the team with the most wins gets ranked '1st', then '2nd' etc. I'd like it to, in the case of a tie, rank both teams equally 'the 3rd and 4th best teams both have identical records, so both get ranked '3rd' and the '4th' ranking gets skipped.

I have searched for a formula to allow this, and I can't find it. Can anyone help? As an aside, is anyone aware of a place I can find a listing of formulas that can be used in sports ranking, etc?

View 8 Replies View Related

Computer IP Address

Mar 10, 2006

I have a problem running an excel macro on different laptops because the IP needs to be known (my program links to databases that are installed on a "server" laptop). The IP can be sourced by using the "Start, Run, cmd, ipconfig" but my users can have problems with process.

Does anyone know of a vb function that will display the ip of the computer that the code is run on?

View 9 Replies View Related







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