Re: Access Programming Databases by HI2Japan Charts don't filter data. Charts graphically display data. You need to filter the data before making the chart. So essentially you need to use possible either Advanced filter or auto filter within Excel to get the data to look a specific way before creating your chart. Charts for PODOFO (PDF Library) Programming Software Development by daino Hi Anyone know of a compatible charts Library for inserting charts into a PDF file created by PODOFO? I was thinking of Gnuplot but not sure if there's a better option out there. Thanks danny2000 Re: Charts for PODOFO (PDF Library) Programming Software Development by daino Any clues on this one. I like the look of Gnuplot but not sure if it's possible to integrate their charts into a pdf document. Does anyone have some experience in that field. Thanks Danny2000 Charts in Access 97 Programming Databases by RustyCanadian I'd just like to know if anyone can point me to some good resources for creating charts in Access 97. I'm trying to modify a bar graph and I can't get it to do what I want to do. I haven't done much work with charting before and everything I've found is specific to Access 2000. Any suggestions are appreciated. Thanks, Jay Charts in VB net Programming Software Development by ajTrader I wish to use VB net to construct stock market bar charts. Can anyone please guide me. Thanks. Re: Deleting Charts Programming Software Development by JLynn The button initiating the macro is on the "Main" worksheet. The charts are on the "Charts" worksheet. There are charts on the "Charts" worksheet and the button on the "Main" worksheet calls the macro to delete all the charts in the workbook (all the charts are on the "Charts" worksheet). Google Charts to PDF Programming Web Development by danarashad I am some reports I am using google charts for, but when I create a pdf the charts are not being created in the pdf. Is there away around this, or has anyone ran into this issue. I am using google charts because CF charts gives me a image expired error, if I run to many reports at once. Re: Deleting Charts Programming Software Development by Jupiter 2 Excel Charts are in the Chart object and not Sheets object, in Excel 2003 and over [CODE]Sub Selecting_Charts() Workbooks("Op 70.xls").Activate 'Sheets("Charts").Select Charts.delete, true 'Workbooks("Op 70.xls").Charts.Select 'Error here! End Sub[/CODE] Re: Google Charts to PDF Programming Web Development by LastMitch **@danarashad** >Google Charts to PDF I think you might have to pay for … services. But there's another of doing it Convert the charts into images and then convert it to PDF. Read this…: http://www.battlehorse.net/page/topics/charts/save_google_charts_as_image.html Here is the code for it: https://gist… IE 6.0.2800 won't display Fidelity.com charts Hardware and Software Microsoft Windows by Jim For about 2 months now I am unable to display charts at www.fideility.com when I log on using AT&… on using MSN and MSN 8 I can display the charts. The charts come up gray with a small square in the… Re : charts Programming Software Development by msantosh18 can any one help me how to create charts by connecting to database. my need is that i have to group by a column in database and represent it in a chart in visual basic. the values after groupby may have 10 values. how can i do it in pie charts and bar charts. Deleting Charts Programming Software Development by JLynn … a strange error when I try to delete my old charts in my excel workbook. Below is the code I am… 70.xls").Activate Sheets("Charts").Select Workbooks("Op 70.xls").Charts.Select 'Error here! End Sub [/CODE… Re: Deleting Charts Programming Software Development by Jupiter 2 … 70.xls").Activate Sheets("Charts").Select Workbooks("Op 70.xls").Charts.Select 'Error here! End Sub [/CODE… object button to View Code [code] Private Sub cmdDelChart_01_Click() ActiveWorkbook.Charts.Delete End Sub [/code] This worked for me, as well… Re: Deleting Charts Programming Software Development by JLynn I'm not looking to delete my worksheet named "Charts". I'm looking to delete the charts on my worksheet named "Charts". Re: Website - Graphs and Charts Digital Media UI / UX Design by MidiMagic … manually - security may proihibit this). 1. Have a set of charts stored on your server as image files, and pick the… MySQL) chooses. The hard part is the source of the charts. I can't find any scripting languages that can create… programming language your ISP host lets you use that makes charts. Or you can make them with Excel and upload them… Re: Deleting Charts Programming Software Development by JLynn …] Sub Selecting_Charts() Workbooks("Op 70.xls").Activate ActiveWorkbook.Charts.Delete End Sub [/CODE] I get the following error: "… very baffled by this and have no idea why my charts won't delete because the code you gave me should… Re: Deleting Charts Programming Software Development by JLynn Before I placed the sub in a module with several other subs. Then I created a 'Click' sub for the button on the appropriate worksheet. I initiated the macro and placed the macro no differently than I had previously. I have charts in the correct workbook, so recognizing the charts should not be an issue, but it is. Re: Deleting Charts Programming Software Development by JLynn Each time the real macro is run, new charts are created, hence the need to delete the old charts to keep the program running efficiently. The chart is inserted as a new object each time on the existing sheet (a new sheet is not created each time). Re: Deleting Charts Programming Software Development by Jupiter 2 Is it a worksheet "Sheet1" renamed to "Charts" ? If so, then it is not a CHART sheet but a normal worsheet. Sheets("Charts").delete This works for me. Iso 10646 code charts-compiler Programming Software Development by mooncry … the first , i can't find the ISO 10646 code charts on google and when i thought i found one , it… can i find a ISO 10646\ Universal character names Code charts ? 2. What shoud i do with my c++ compiler ? 3… Website that generates graphs and charts Programming Web Development by compengr …, gainers and losers, etc.) and the results in form of charts, graphs, reports will be displayed immediately. 2. that will display… be submitted and the results generated in form TREND GRAPHS, CHARTS, REPORTS, etc. I believe this is called data mining. Thanks… Website - Graphs and Charts Digital Media UI / UX Design by compengr …, gainers and losers, etc.) and the results in form of charts, graphs, reports will be displayed immediately. 2. that will display… be submitted and the results generated in form TREND GRAPHS, CHARTS, REPORTS, etc. I believe this is called data mining. Thanks… Website - Graphs and Charts Digital Media UI / UX Design by compengr …, gainers and losers, etc.) and the results in form of charts, graphs, reports will be displayed immediately. 2. that will display… be submitted and the results generated in form TREND GRAPHS, CHARTS, REPORTS, etc. I believe this is called data mining. Thanks… Re: Deleting Charts Programming Software Development by JLynn [CODE] Charts.Delete , True [/CODE] That code does not want to work. I get the error 'Wrong number of arguments or invalid property assignment' when I add that code. Thanks for your help, though. Jordan Re: Deleting Charts Programming Software Development by Jupiter 2 This example deletes every chart sheet in the active workbook. ActiveWorkbook.Charts.Delete Re: Deleting Charts Programming Software Development by Jupiter 2 I inserted a chart sheet by right-click the sheet tab. I created a userform Added a button. Ran the userform and it deleted the Chart Sheet. There was a confirm delete dialog. [CODE] Private Sub cmdDelChartSheet_Click() ActiveWorkbook.Charts.Delete End Sub [/CODE] Re: Deleting Charts Programming Software Development by JLynn I'm amazed that my code still will not work. It gets tripped up every time on the 'ActiveWorkbook.Charts.Delete' line. I don't know if there is some internal glitch in my version of VB or Excel 2003 or what, but the code should work and it doesn't. Thanks anyway. I do appreciate it. Re: Deleting Charts Programming Software Development by Jupiter 2 You say you have "done all that stuff" but you still haven't told me where the macro is located. The macro doesn't work if there are no Chart sheets. Chart Sheet is not a normal sheet renamed "Charts", is it? Re: Deleting Charts Programming Software Development by Jupiter 2 [code] ActiveSheet.ChartObjects("Charts").Activate ActiveChart.ChartArea.Select ActiveWindow.Visible = False Selection.Delete [/code] Ext JS charts Programming Web Development by arcticM … trying to figure out how to implement one of the charts from the Ext JS framework.. where I get stuck is… -79, ect.. if there's a tutorial for using those charts (any kind of chart, just to get the idea) I…