How Can I Stop The Chart Data Range From Updating When I Add & Delete A Row

Oct 11, 2009

I have a worksheet with 300 rows and I have a separate worksheet that contains graphs based on the data in the 300 rows.

The data is continually updated but stays at 300 rows. I add a new row at 301 and then I delete row 1.

I set the graphs up with a Chart Data Range of =GData!$B$1:$AB$300

As I add and delete rows the Chart Data Range reduces so after adding and deleting 3 rows the Chart Data Range is now =GData!$B$1:$AB$297

How can I get the Chart Data Range to stay at =GData!$B$1:$AB$300?

View 9 Replies


ADVERTISEMENT

Create Dynamic Range With Updating Chart

Jul 8, 2014

I have created a spreadsheet which uses data validation to allow a user to select a company, start Date, end date, and projected months in order to output different figures. I have attached a spreadsheet to this post in case that was hard to understand.

Since there is data validation, indexing, and matching going on, as different selections are made, various tables change as a result. Uou will be able to see what I mean as you open the example sheet and start messing around with the data validation boxes.

The problem I am encountering now, is creating an exponential graph that will also keep changing as the user changes their selections in the data validation boxes. I am unsure if this is even possible, but I figured it was worth a shot to ask. On the example sheet, I have included a graph similar to the one I want, but it only contains data in a certain range of cells, rather than dynamically changing to accommodate whatever data is outputted.

Here is what I am looking for in the graph:
1. Whatever dates are selected by the user in the data validation boxes, along with the projected dates will be on the x-axis.
2. The PMPM figures associated with the selected dates, and the projected dates on the y-axis.
3. Ability to make different selections from the data validation boxes and still have a dynamic chart that keeps updating itself.

View 1 Replies View Related

Error When Updating Chart From Imported File Data

Oct 4, 2013

I've created a spreadsheet which, on running a macro, imports data from a text file, formats it and then sums various parts of it giving me a subset of the large file as a range of data for a chart (a pie chart) on Sheet 2.

The problem begins when I delete the data in the worksheet in preparation for another import - the Pie chart just loses all the data and I have to manually reselect it in the chart each time.

Once deleted the chart is blank, but as soon as the data is imported, I get reference errors when I click on Sheet 2

I must be doing something wrong. You can delete data and repopulate it and the chart should pick up with the new data. If the cells it is referencing are empty, it is blank. Not so here.

Is it to do with importing the data? Or the formula for my chart data?

View 1 Replies View Related

Stop Updating Picture Links?

Jul 14, 2010

In my worksheet i use a macro to produce my results which runs perfect.

Later i copied my range and pasted as picture link in another sheet.Since then the macro takes a long time to run. I suppose while running the macro xl continuously updates the picture slowing the macro.

i already set calculation as manual but no use.

View 3 Replies View Related

Stop Now Function Auto Updating When New Row Added

Oct 29, 2008

I have fought with this for 2 days and I am trying to have a worksheet cell update the date and time if the cell it is referencing (B3 see below)

Here is the formula I am using however it updates every time a new row is added to the worksheet. So the Date/Time stamp on each row is always updated to NOW() everytime.

=IF(ISNA(B3),"0/0/00 00:00",NOW())

I would like to have a Date/Time stamp stay as is once that row has been added. Is there anyway to stop the field from updating once the date and time have been set?

View 9 Replies View Related

Conditional Format Shading Stop Updating Until Save...?

Aug 17, 2009

I have a sheet that highlight cells to show that they need to still be filled out if another cell in the same row has a number in it. What happens is that when you put the number in the row the cells won't become shaded or partially shade until the workbook is saved.. Maybe I can put some code in that tells the work book to update whenever a cell is changed?

View 3 Replies View Related

Stop Links Updating Opening Workbook With Macro

Jul 24, 2007

Currently I am using VBA Code below to Stop Update links prompts

Private Sub Workbook_Open()
Workbooks.Open "C:TempBook2.xls", UpdateLinks:=False
End Sub

Is there code I can use such This Workbook so that I can save this file as another name and it will work? Biz Auto Merged Post;Dear All, I have found VBA code that works.

Private Sub Workbook_Open()
Workbooks.Open ThisWorkbook.Name, UpdateLinks:=False
End Sub

View 3 Replies View Related

Updating Range Of Data To Start On Specific Dates?

Mar 6, 2014

I am looking to have the data ranges in tab 'Type' update automatically in 'Output' for a particular start date. So for example if I enter LBO into cell E3 in the 'Output' tab it will input the data range for LBO from tab 'Type' but from a specific start date.

I know I can achieve part of this via LookUp functions but it is the start date that has me stumped.

View 8 Replies View Related

Chart Not Always Updating

May 31, 2007

I am using Microsoft Excel 2003. There are several charts in the worksheet and the ranges for the series in the charts are defined by named ranges, e.g.:

Values: =FirstNamedRange

where FirstNamedRange is defined as Sheet1!A2:A100.

The values in FirstNamedRange are themselves calculated from other inputs. The problem is that when I recalculate the sheet, changing the values of FirstNamedRange, there are times when the chart does not change.

This happens sporadically. 9 times out of 10 both the values in the range and the chart change. At other times, the values in the range change and the chart doesn't reflect this. If I save the file, close and then reopen, (thus forcing the chart to recalculate?) then the chart looks correct.

View 9 Replies View Related

Dynamic Chart Not Updating

Jun 21, 2008

I have a chart that display data from a dynamic named range. Problem is the chart only displays the correct data when I first input the named range into the data source on the first attempt. When the dynamics of the named range change, the range the chart displays remains the same. I have read another post on here where someone had the solution, but I couldnt get it to work for me.

I am inputting the named range into Data Source-> Data Range. The other thread said to put the named range into Data Source-> Series. I am unable to enter my named range into Series. I have also tried putting the .xls filename followed by !(named range) into the series boxes but excel will not allow me to do this either.

View 3 Replies View Related

Add & Delete Multiple Chart Data Series Labels

Jan 16, 2008

My friend has set up an excel workbook with a sheet for every month (labelled Jan graphs, Feb graphs, Mar graphs etc) which has 7 pie charts per sheet. The problem is the pie charts are showing the 0% fields and the data labels are overlapping. I have found a macro that gets rid of the 0% labels but I need to repeat the macro for all the 7 charts on each sheet and all 12 worksheets for each month of the year. I am very new to VBA and coding of any type and have looked but can't find the solution.

The macro I am currently using for "Chart1" on "Jan graphs" is below. The charts are labelled Chart1, Chart2, Chart3 etc.

Sub ClearLabels()

Worksheets("Jan graphs").ChartObjects("Chart 1").Chart.ApplyDataLabels _
Type:=xlShowLabelAndPercent

For Each x In Worksheets("Jan graphs").ChartObjects("Chart 1"). _
Chart.SeriesCollection(1).Points

View 8 Replies View Related

Pivot Chart Not Updating When Filter Changes

Apr 29, 2014

I am trying to filter pivot chart by strategy and it does not update the combined Sum of Cumulative chart when I uncheck / filter strategy.

I have attached the example : Strategy_Combined_Analysis_Wkly_All_Example.xls‎

View 3 Replies View Related

Updating Multiple Series' On Chart

Nov 18, 2008

I have a chart with 3 series':

Series1
Series2
Series3

The chart is called chtEngagement. I want to use vb to update these series'.
Series1 should be shown as:

View 5 Replies View Related

Label Values Not Updating, But Chart Is

Oct 17, 2005

I have a number of charts (mostly pie) I don't have a legend, but I do have "Show label and percent" selected.

When I add in new data the actual chart updates to show the right sized pie slices... but the values on the labels don't update as well. I can't figure out how to make that happen?

View 9 Replies View Related

Automatically Updating Chart With Changing Inputs In VBA?

Feb 12, 2013

VBA code that would update a chart automatically as you change the inputs which are located in cells in excel. The inputs are located in cells B5:B9 and i want a code so that as you change these numbers the chart would automatically update.

View 1 Replies View Related

Updating Multiple Chart Options (e.g. Title)

Apr 2, 2007

Is it possible to update Chart Titles in Batches. For the following Titles:

'Client 1, Jan 07'
'Client 2, Jan 07'
'Client 3, Jan 07'
'Client 4, Jan 07',

Would you be able to change 'Jan 07' to Jan 08' on all of the above whilst keeping the variable client name, in a single batch process?

View 3 Replies View Related

Chart Not Updating When Source Formulas Calculate

Feb 22, 2008

I have the same question as described in Graphs Not Updating When Source Data Updated; however, the poster did not reply to the request-for-clarification questions.

My chart does not always update when my source data changes. My Calculations setting is Automatic (not Manual). There is no macro code working to produce the source data or the chart. My chart is on the same worksheet as my source data. The source data is simple links to other cells in the same workbook that update as the underlying data is updated. Saving doesn't work. Manually calculating (F9) doesn't work. The only way I have found to get the correct data to display in the charts is to open the Source Data and re-enter the Series range. Obviously, that gets old.

View 7 Replies View Related

Prevent Graph/Chart From Updating/Refreshing

May 3, 2008

I am dealing with plotting large amounts of data (millions of cells) across multiple series. Everytime you click, add a new series or do anything it redraws the graph taking a while. This Is there are way to prevent Excel 2003 from plotting a graph until you are done setting it up?

View 3 Replies View Related

How Do You Stop 0's From Showing Up On A Chart

Dec 5, 2008

I have data that has values showing 0 and I don't want them showing up on the chart. I have excel 2003 and 2007 that I need it to work for.

This is what I am using for excel 2007 and it works fine.

=IF(COUNTIF('Closed Transaction'!I6:I38,"Friends")=0,NA(),COUNTIF('Closed Transaction'!I6:I38,"Friends"))

I need a forumla for excel 2003. The one above still shows the 0's on the chart.

View 9 Replies View Related

Stop Chart Plotting Values

Dec 7, 2007

I want to do almost exactly this, but when I assign null using "", and plot the result on a graph, the graph thinks that cell is populated with a 0. Let me try to be a bit clearer. I have a range of dates in Col A, and percentages in B and C, but my last 3 dates in Col A have empty cells in B. Cols B and C are separate series. The line graph is (correctly) plotting series C, and series B, whose line stops where there is no more data.

What I need to do now is replace those empty cells with a formula like the one above. Ie, IF(ISBLANK(x1),<null>, <formula>), but using IF(ISBLANK(x1),"", <formula>) doesn't make the line on my graph stop.

View 3 Replies View Related

VBA / How To Spin Chart Very Fast Then Slow And Stop

Nov 20, 2013

I want to make a prize wheel (aka Wheel of fortune) I try to follow this code >> wheel of fortune but I stuck at the animation in order to make it look like the real prize wheel. as far as I google, this youtube (Simple Excel Pie Chart turned into AMAZING Electronic Prize Wheel of Fortune! - YouTube) demonstrate the result that I really want my chart would be.

how to make the prize wheel spin very fast at first and slower later until stop?

View 3 Replies View Related

Stop Chart Plotting Blank Cells

Dec 12, 2006

i am creaing a chart in excell but i have a problem. i would like to have a chart like this one http://shrani.si/?screenshotow31.jpg. but when i create my chart it looks like this http://shrani.si/?screenshotow2t.jpg. first chart is created with some macro so i dont know how is it working but i think the problem is in blank cells because if cell is blank the chart line will go to 0 but i dont whant that :s

View 2 Replies View Related

Formula References Not Updating On Row Insert/Delete

Jul 26, 2007

I have a worksheet with many different formulas in many different cells. When I insert or delete a row, there is one formula in one cell that does update to reflect the change in rows. The cell is located several rows below the section where rows are changing. It is a simple formula too. Here is the formula: "= SUM($E$3:E11)*0.09". If I delete more rows that cause the highest row number to be less than 11, this formula updates. If I insert more rows and go beyond row 11, the formula does not update. I have tried using $E$11, $E11, and E$11 to no avail.

View 9 Replies View Related

Pie Chart Data Range

Jan 18, 2009

I am coming across an error when i am trying to make my final chart. I am trying to chart on ten pieces of data, but for some reason when i complete the chart...it is only reporting on 7 out of the 10. if i try to do it manually, after i have selected my 7th piece of data, it will not let me select any more.

find attached a copy of my report. Hopefully it does not look too confusing. Note: Sheet "Agent Analysis" works fine...this may give you an idea of what i am trying to acomplish. It is sheet "AUX Breakdown" where i am having the issues.

View 2 Replies View Related

Macro Stop The Delete Process

Oct 12, 2007

I am trying to speed up this macro, ive already tried turning screenupdating and calculation off, but it still takes forever, and I dont understand why.

The code is basically searching for a given string in column E. There are about 9000 lines to my sheet, which shouldnt take more than a 30 seconds to a minute to complete.

Private Sub CommandButton1_Click()
Application.Calculation = xlCalculationManual

For MY_ROWS = Range("E12000").End(xlUp).Row To 1 Step -1
If Range("E" & MY_ROWS).Value UserForm1.ComboBox1.Value Then
Range("A" & MY_ROWS & ":E" & MY_ROWS).Delete (xlUp)
End If
Next MY_ROWS

Also anyone know how to add another condition to make the macro stop the delete process at lets say Range("a1:e8")?

View 9 Replies View Related

Chart - Allows To Switch Data Range

Mar 16, 2014

I have data in columns A to Z. Column A has the name of Bonds and columns B to Z have different returns for those funds. I would like to create a scatter plot chart that allows me to switch which column to pull the data from in addition to column A which will always have the name of the Bonds.

For example in addition to the name in column A I would like the chart to plot data from Columns C and F on the x and y axis respectively.

I'm thinking of copying column A to a new tab and then having a drop down box in columns B and C to copy over values from the 2 columns I select. How can I get a drop-down box to copy over values from another column?

View 2 Replies View Related

Chart Dynamic Data Range

Aug 31, 2006

I have created a chart that automatically expands as more data is added. This works great by using named ranges in my Chart's Series' Values and Axis Label fields. The named ranges use the Offset function.

The problem I am having is applying this same technique to to same chart to vary the number of series that I want to chart. I created a name range, using the offset function. But when I add the name to my Data Range formula, it will not stick. It changes the number of series displayed correctly when I add the name. But after I click OK on the Source Data dialog box, the data range reverts back to the address supplied by the name range variable; it does not retain the name range variable itself. Can Chart Data Ranges not contain a name range variable, especially when name range variables are used in the series formulas?

View 5 Replies View Related

Delete Macros In New Workbook OR Stop Them From Executing

Jul 7, 2014

I've got a macro embedded in a sheet (not in a module)..."Private Sub worksheet_activate()".

I have a macro that copies this specific sheet to a new workbook in order for other users to play with.

Problem is, when they select the new copied sheet in the new workbook, it tries to execute the "worksheet_activate" macro.

I've done searches on trying to delete macros but to no avail....

View 2 Replies View Related

Hiding Zero Values From The Chart Data Range

Jul 7, 2014

I am currently building a tool that works with an undefined range of input variables, e.g. I now have a range of 200 values but it could just as easily be 400 or 100. I am using these values for further calculations and have thus 'dragged down' to cells that in some instances are empty, resulting in values that are 0. I'm also building a chart based on these values, but it shows the values that are 0 as well!

Is there any way to just plot the non-zero values without changing the data range?

View 1 Replies View Related

Line Chart From Dynamic Range Of Data

Feb 14, 2014

I have a spreadsheet that I have setup to have raw data pasted into. Long story short, it pulls the maximum reading for a given 5 minute period and returns the highest value for each 5 minute increment where there was a reading. It does this for all of the different dates entered, returning a separate data table for each date.

What I now need is to graph the data on a line chart. Since the number of time values can be variable, I have to include the entire range (for example A3:B5002). When I graph this out, it has all of the data clumped up at the beginning and flatlines for 99% of the chart.

I tried building dynamic named ranges using offset, but that seems to yield similar results once charted.

See the link below where I've dumped some sample data in (it wouldn't let me upload due to the size and I can't upload only part of it without breaking the whole thing). The data I need to chart is from columns A&B on the GraphData sheet. Sheet 1 contains the chart I have been trying to use. The endgame of this is to have the end user paste in their data and *POOF* charts.

My only restriction is that I cannot have Macros/VBA.

[URL]....

I tried following this post and using NA() instead of ""...no dice, it just puts #NA at the bottom labels instead of spaces.

View 3 Replies View Related







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