Series Fill

I have over 250 dates (in date order) that I wish to insert into a column, using Excel I can use Edit>Fill>Series functions then enter the first date then the last then all the 250 dates are automatically entered for me. Is there any way of doing similar in Numbers as all I can find is under Insert > Fill but as far as I can see no way to enter a Series of either dates or numbers to avoid entering a long list of data in order?
Thanks

I thought that I was clear.
Enter a date in A1: 1/1/2009
Enter a date in A2: 4/1/2009
As I am French I uses the French format d/m/y
Select the two cells then fill down.
The result will be:
1 janv. 2009
4 janv. 2009
7 janv. 2009
10 janv. 2009
13 janv. 2009
16 janv. 2009
19 janv. 2009
22 janv. 2009
25 janv. 2009
28 janv. 2009
31 janv. 2009
3 févr. 2009
6 févr. 2009
9 févr. 2009
12 févr. 2009
15 févr. 2009
18 févr. 2009
21 févr. 2009
24 févr. 2009
27 févr. 2009
2 mars 2009
5 mars 2009
8 mars 2009
11 mars 2009
14 mars 2009
17 mars 2009
20 mars 2009
23 mars 2009
26 mars 2009
29 mars 2009
1 avr. 2009
4 avr. 2009
7 avr. 2009
10 avr. 2009
13 avr. 2009
16 avr. 2009
19 avr. 2009
22 avr. 2009
25 avr. 2009
28 avr. 2009
1 mai 2009
4 mai 2009
7 mai 2009
If you enter/select a single date, the result will be:
1 janv. 2009
2 janv. 2009
3 janv. 2009
4 janv. 2009
5 janv. 2009
6 janv. 2009
7 janv. 2009
8 janv. 2009
9 janv. 2009
10 janv. 2009
11 janv. 2009
12 janv. 2009
13 janv. 2009
14 janv. 2009
15 janv. 2009
16 janv. 2009
17 janv. 2009
18 janv. 2009
19 janv. 2009
20 janv. 2009
21 janv. 2009
22 janv. 2009
23 janv. 2009
24 janv. 2009
25 janv. 2009
26 janv. 2009
27 janv. 2009
28 janv. 2009
29 janv. 2009
30 janv. 2009
31 janv. 2009
1 févr. 2009
2 févr. 2009
3 févr. 2009
4 févr. 2009
5 févr. 2009
6 févr. 2009
7 févr. 2009
8 févr. 2009
9 févr. 2009
10 févr. 2009
11 févr. 2009
12 févr. 2009
I want for example to enter dates sequentially from 1750 to 1850 (one hundred year span) so in cell A1 I entered 1750 then in cell A2 I entered 1751 I then highlighted cells A1 to A100 (to cover the one hundred year span) then clicked Insert > Fill>Fill Down, all that happened was that all the one hundred cells (A:1 to A:100) became 1750 and not A1:1750, A2:1751, A3:1752, A4:1753, A5:1754.............A100:1850.
*1750 is not a date, it's a number !*
For numbers you must fill two cells, select these two cells then apply fill down.
All that is explained in plain English in the *Numbers User Guide* which every user may download thru the Help menu.
If you want something which mimics the XL feature, use this script:
--[SCRIPT fillXcells]
Enregistrer le script en tant que Script : fillXcells.scpt
déplacer le fichier créé dans le dossier
<VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
Sélectionnez la cellule contenant le nombre de départ
menu Scripts > Numbers > fillXcells
vous demandera quel est le nombre de valeurs souhaitées
et remplira ces cellules avec des valeurs consécutives.
--=====
L'aide du Finder explique:
L'Utilitaire AppleScript permet d'activer le Menu des scripts :
Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
Cochez la case "Afficher le menu des scripts dans la barre de menus".
+++++++
Save the script as a Script: fillXcells.scpt
Move the newly created file into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
Select the cell containing the starting number.
menu Scripts > Numbers > fillXcells
will ask you how many values are wanted
then it will fill these cells with consecutives values.
--=====
The Finder's Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the "Show Script Menu in menu bar" checkbox.
--=====
Yvan KOENIG (VALLAURIS, France)
2009/11/13
--=====
on run
if my parleAnglais() then
set prompt to "How many cells must be filled ?"
else
set prompt to "Nombre de cellules à remplir ?"
end if
set defaultvalue to 150
set nbValues to my askAnumber(prompt, defaultvalue, "i")
set {dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
set firstVal to value of cell rowNum1 of column colNum1
repeat with r from 1 to (nbValues - 1)
if (rowNum1 + r) > row count then add row below last row
set value of cell (rowNum1 + r) of column colNum1 to (firstVal + r) as text
end repeat
set firstCell to (get name of cell rowNum1 of column colNum1)
set lastCell to (get name of cell (rowNum1 + nbValues - 1) of column colNum1)
set selection range to range (firstCell & ":" & lastCell)
end tell
end run
--=====
on getSelParams()
local r_Name, t_Name, s_Name, d_Name, col_Num1, row_Num1, col_Num2, row_Num2
set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
if r_Name is missing value then
if my parleAnglais() then
error "No selected cells"
else
error "Il n'y a pas de cellule sélectionnée !"
end if
end if
set two_Names to my decoupe(r_Name, ":")
set {row_Num1, col_Num1} to my decipher(item 1 of two_Names, d_Name, s_Name, t_Name)
if item 2 of two_Names = item 1 of two_Names then
set {row_Num2, col_Num2} to {row_Num1, col_Num1}
else
set {row_Num2, col_Num2} to my decipher(item 2 of two_Names, d_Name, s_Name, t_Name)
end if
return {d_Name, s_Name, t_Name, r_Name, row_Num1, col_Num1, row_Num2, col_Num2}
end getSelParams
--=====
set {rowNumber, columnNumber} to my decipher(cellRef,docName,sheetName,tableName)
apply to named row or named column !
on decipher(n, d, s, t)
tell application "Numbers" to tell document d to tell sheet s to tell table t to return {address of row of cell n, address of column of cell n}
end decipher
--=====
set { d_Name, s_Name, t_Name, r_Name} to my getSelection()
on getSelection()
local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
tell application "Numbers" to tell document 1
repeat with i from 1 to the count of sheets
tell sheet i
set x to the count of tables
if x > 0 then
repeat with y from 1 to x
try
(selection range of table y) as text
on error errMsg number errNum
set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
return {theDoc, theSheet, theTable, theRange}
end try
end repeat -- y
end if -- x>0
end tell -- sheet
end repeat -- i
end tell -- document
return {missing value, missing value, missing value, missing value}
end getSelection
--=====
on decoupe(t, d)
local l
set AppleScript's text item delimiters to d
set l to text items of t
set AppleScript's text item delimiters to ""
return l
end decoupe
--=====
on parleAnglais()
local z
try
tell application "Numbers" to set z to localized string "Cancel"
on error
set z to "Cancel"
end try
return (z is not "Annuler")
end parleAnglais
--=====
Asks for an entry and checks that it is an integer number
set myInteger to my askAnumber(Prompt, DefaultValue, "i")
Asks for an entry and checks that it is a floating number
set myFloating to my askAnumber(Prompt, DefaultValue, "f")
on askAnumber(lPrompt, lDefault, ForI)
local lPrompt, lDefault, n
tell application (path to frontmost application as string)
if ForI is "f" then
set n to text returned of (display dialog lPrompt & " (" & (1.2 as text) & ")" default answer lDefault as text)
try
set n to n as number (* try to convert the value as an number *)
return n
on error
if my parleAnglais() then
display alert "The value needs to be a floating number." & return & "Please try again."
else
display alert "La valeur saisie doit être un nombre décimal." & return & "Veuillez recommencer."
end if
end try
else
set n to text returned of (display dialog lPrompt default answer lDefault as text)
try
set n to n as integer (* try to convert the value as an integer *)
return n
on error
if my parleAnglais() then
display alert "The value needs to be an integer." & return & "Please try again."
else
display alert "La valeur saisie doit être un nombre entier." & return & "Veuillez recommencer."
end if
end try -- 1st attempt
end if -- ForI…
end tell -- application
Here if the first entry was not of the wanted class
second attempt *)
tell application (path to frontmost application as string)
if ForI is "f" then
set n to text returned of (display dialog lPrompt & " (" & (1.2 as text) & ")" default answer lDefault as text)
try
set n to n as number (* try to convert the value as an number *)
return n
on error
end try
else
set n to text returned of (display dialog lPrompt default answer lDefault as text)
try
set n to n as integer (* try to convert the value as an integer *)
return n
on error
end try -- 1st attempt
end if -- ForI…
end tell -- application
if my parleAnglais() then
error "The value you entered was not numerical !" & return & "Goodbye !"
else
error "La valeur saisie n’est pas numérique !" & return & "Au revoir !"
end if
end askAnumber
--=====
--[/SCRIPT]
Yvan KOENIG (VALLAURIS, France) vendredi 13 novembre 2009 18:55:36

Similar Messages

  • No Fill In the Series

    Hi Gurus,
    Is this possible in the Xcelsius 2008 Sp3 that we can make series filled with no color , actually i tried to bind the color with no fill cell but by default it is taking black..
    My requirement is something like i need to make one series without color ,also unmarking the option of Chart BAckground doesnt help  as i have few other charts below it(DV)
    Please help.
    Thanks
    Saurabh

    Hi Gurus,
    Is this possible in the Xcelsius 2008 Sp3 that we can make series filled with no color , actually i tried to bind the color with no fill cell but by default it is taking black..
    My requirement is something like i need to make one series without color ,also unmarking the option of Chart BAckground doesnt help  as i have few other charts below it(DV)
    Please help.
    Thanks
    Saurabh

  • Need help in SQL Queries using GUI controls or variables

    Hello, all
    I have a big problem (I have already had with Visual Basic a few mounths ago) with Java while writing my SQL Queries.
    I would like to know how I must do to use variable data or GUI control data in my SQL Query to select only some records.
    Here, my first Query that works without any problem (no WHERE clause !!!) :
    Statement requeteBedes = connectBedes.createStatement();
    ResultSet resultatSeries = requeteBedes.executeQuery("SELECT * FROM Series");
    initComboBoxSeries(resultatSeries);the method "initComboBoxSeries" fills a JComboBox with all the names of the series in my database.
    Here comes my problem.I would like to use the value of the selected "series" in the JComboBox to search in another table of the same Database. I made another statement but it returns a Null ResultSet :
    ResultSet resultatSearchAlbumsFromSeries = requeteBedes.executeQuery("SELECT * FROM bandes_dess WHERE  ser_nom = '" + strComboBoxSeriesSelected + "' "); The variable strComboBoxSeriesSelected contains the value of the selected line in the combobox with all the series, filled after the first query that is here above and that works very well.
    Could some one help me and tell me how I must use variables or GUI controls values in my SQL Queries or tell me if there is a place where I could find an explanation of that kind of problems (like more "advanced SQL Queries", as the ones currently used in all the Learning Java 2 books)
    Thank you all for your help.
    Christian.

    executeQuery() will never return null. At least that's what the spec says. You are probably catching an exception (probably a syntax error caused by a single quote in strComboBoxSeriesSelected) and ignoring it. Or do you mean the ResultSet contains no rows?
    Anyway, to use parameterized queries, take a look at PreparedStatements. Your code should look like this using PreparedStatement:Statement requeteBedes = connectBedes.prepareStatement("SELECT * FROM bandes_dess WHERE  ser_nom = ?");
    requeteBedes.setString(1, strComboBoxSeriesSelected);
    ResultSet resultatSeries = requeteBedes.executeQuery();Alin.

  • Best digital camera and camcorder...

    What are some good budget digital camcorders and a digital camera for the MacBook? My wife and I are expecting our first child in December and we're both in college (I have a degree in visual communications, and I'm going back for computer programming), and she's going for nursing.
    We're kind of tight on money fixing up our house and getting things ready for the baby, and I've got 'proud parent disease' where I wanna take pictures and video tape EVERYTHING all the time.
    Any suggestions?

    My suggestion is to not cheap out on a digital camera (no experience with camcorders). It may save you money up front but the quality of the product may come back to bite you (much like getting a Windows PC versus a Mac ).
    I use this review site: http://www.steves-digicams.com/
    I'm not an expert, but among my circle of very amateur photography friends Canon is considered to have the best quality lenses and image processors. I myself went with a Canon PowerShot A540, a 6-megapixel consumer model, and it's been great. The A-series filled all of my requirements--took AA-type batteries instead of expensive proprietary ones, had features that the super-compact line didn't, including good basic video recording (for quick clips), and it wasn't as bulky as an SLR or "prosumer" model. My brother and another friend got the A540's less expensive sister, the A530; the only reasons I didn't go with that was the smaller screen and the video recording wasn't as good.
    I'd avoid Kodak and HP branded cameras, as well as any generic brands. Most everyone else should be decent too, including Sony, Fuji, Olympus, etc.
    G4 dual-533   Mac OS X (10.4.6)  

  • BarChart

    I have a BarChart in my application.
    The chart is set up like this:
    var noPolicyResultChart: BarChart = BarChart {
            width: 350
            height: 550
            translateX: 25
            translateY: 25
            categoryAxis: CategoryAxis {
                label: "Change in Temperature (\u00B0F)"
                categories: [">7", "6-7", "5-6", "4-5", "3-4", "<3"]
            valueAxis: NumberAxis {
                    label: "% of Spins"
                    minorTickCount: 0
                    minorTickVisible: true
                    tickLabelsVisible: true
                    lowerBound: 0
                    upperBound: 100
            data: [
                BarChart.Series {
                    fill: Color.SALMON
                    name: "No Policy"
                    data: [
                        BarChart.Data { value: bind NoPolicyPercent[0] }
                        BarChart.Data { value:  bind NoPolicyPercent[1] }
                        BarChart.Data { value: bind NoPolicyPercent[2] }
                        BarChart.Data { value: bind NoPolicyPercent[3] }
                        BarChart.Data { value: bind NoPolicyPercent[4] }
                        BarChart.Data { value: bind NoPolicyPercent[5] }
        }When I change a value in the array at runtime the graph scales properly but the labels on the Y-Axis change from numbers ("0.0", "10.0", "20.0", etc.) to strange values ("0...", "1...", "2...", "3...", etc.). It looks like JavaFX is trying to draw the axis labels but running out of room. I tried looking around but I wasn't able to find a solution, or even a cause.

    See [Y Axis Labels replaced with "..." on redraw|http://forums.sun.com/thread.jspa?threadID=5410271]
    I ran this old example that has a similar issue in JavaFX 1.2 and the problem seems to have disappeared in JavaFX 1.3.
    It was about a different kind of graph, but the issue is probably the same.
    Edited by: PhiLho on 3 mai 2010 23:48

  • Area chart help/advice needed

    Hello fellow fexers,
    I am trying to create an area chart that has two series.
    The horizontal axis is a range from -12 to 12
    The first series charts data from -12 to 0 while the second
    series charts data from 0 to 12.
    What i am trying to do is have the first series fill the
    space above the line while the second fills the space below.
    Currently both series fill above.
    Does anyone know how to accomplish this? Is it
    possible?

    answer:
    the direction of the fill in an area chart is dictated by the
    axis range.
    If you have a range that causes the fill to be above the line
    but you need to create incidental series to create color areas in
    the chart you can set the yvalue of the incidental series to the
    lowest point on the y axis

  • IN NUMBERS HOW DO YOU FILL IN FOR A SERIES OF NUMBERS OR DATES

    In numbers how do you fill in for a series of numbers or dates without doing it manually

    You can enter a value in two cells that establishes a pattern, then select the two cells, then click (and hold) on the little circle at the bottom right corner of the selection and drag to fill as needed.
    A Number sequence:
    A Date sequence:

  • How do I fill and show/hide a series of text boxes based on checkboxes?

    I have a series of checkboxes on a form (each of which requires some additional information to be entered) and a series of text boxes further down the page to house any necessary detailed information. 
    I have hidden the detail fields and coded the form so that for each of these checkboxes that is checked a row of detail text boxes appears with the checkbox title in the activiy type field, and if a checkbox is subsequently un-checked the last row of detail text boxes is hidden. 
    The problem with this is that if the user unchecks any box other than the most recently checked one the data for the option they just unchecked still shows, but the data for the last option they selected does not. 
    Does anyone have a solution that would make sure the detail fields for the boxes that are checked is displayed in the detail text boxes that are showing when a checkbox is unchecked, regardless of the order in which the boxes are checked/unchecked?
    This is what my form looks like, with the example where Cash Withdrawals is unchecked but appears in the detail and Remote Deposit Capture is checked but was hidden with the last line:
    The detail groups are named Act1.child, Act2.child, etc. where the description field (filled in the example above) is Act1.type, Act2.type, etc.
    Here is the script I'm using on the checkboxes to achieve what I'm getting now:
    var useSet = this.getField("Set").value;
    var clrSet = this.getField("Clr").value;
    var useType = useSet + ".type";
    var clrType = clrSet + ".type";
    if (this.getField("CheckboxName").value != "Off") {
        this.getField(useType).value = "Check Box Desription";
        this.getField(useSet).display = display.visible;
    else if (this.getField("CheckboxName").value == "Off") {
        this.getField(clrType).value = "";
        this.getField(clrSet).display = display.hidden;
    and here is the script for the hidden boxes that determine what sets are filled and what sets are cleared and hidden:
    Custom Calculation Script for "Set":
    var sOne = this.getField("Act1.type").value.length;
    var sTwo = this.getField("Act2.type").value.length;
    var sThr = this.getField("Act3.type").value.length;
    var sFour = this.getField("Act4.type").value.length;
    var sFive = this.getField("Act5.type").value.length;
    var sSix = this.getField("Act6.type").value.length;
    var sSev = this.getField("Act7.type").value.length;
    if (sOne == 0) {event.value = "Act1"}
    else if (sTwo == 0) {event.value = "Act2"}
    else if (sThr == 0) {event.value = "Act3"}
    else if (sFour == 0) {event.value = "Act4"}
    else if (sFive == 0) {event.value = "Act5"}
    else if (sSix == 0) {event.value = "Act6"}
    else {event.value = "Act7"}
    Custom Calculation Value for "Clr":
    var cOne = this.getField("Act1.type").value.length;
    var cTwo = this.getField("Act2.type").value.length;
    var cThr = this.getField("Act3.type").value.length;
    var cFour = this.getField("Act4.type").value.length;
    var cFive = this.getField("Act5.type").value.length;
    var cSix = this.getField("Act6.type").value.length;
    var cSev = this.getField("Act7.type").value.length;
    if (cSev != 0) {event.value = "Act7"}
    else if (cSix != 0) {event.value = "Act6"}
    else if (cFive != 0) {event.value = "Act5"}
    else if (cFour != 0) {event.value = "Act4"}
    else if (cThr != 0) {event.value = "Act3"}
    else if (cTwo != 0) {event.value = "Act2"}
    else {event.value = "Act1"}

    Hi Andi,
    Please consider the following “solution” too.
    Preliminaries
    An indicator can be considered a variable in JavaScript.
    If P is an indicator, m(P) refers to the value of the indicator.
    Data for Control
    There are four checkboxes: C0, C1, C2 and C3.
    There is an indicator for each checkbox: CP0, CP1, CP2 and CP3.
    If checkbox Ci is checked then checkbox indicator CPi has the value i+1; in other words, m(CPn) = i+1. If checkbox Ci is not checked then checkbox indicator CPi has the value 0; in other words, m(CPn) = 0.
    There are four sets of detail fields: A0, A1, A2 and A3.
    There is a detail fields indicator for each detail fields: AP0, AP1, AP2 and AP3. If detail fields Ak have the details for the checked checkbox Ci then APk has the value i+1; in other words, m(APk) = i+1. If detail fields Ak do not have any details for any of the checked or unchecked checkbox then APk has the value 0; in other words, m(APk) = 0.
    The sets of detail fields are organized in sequence. The “top” or “first” set is AP0. It is followed by AP1. Then followed by AP2. The “bottom” or “last” set is AP3.
    Consider an example with one checkbox selected. In this case m(CP2) = 3; m(AP0) = 3; m(CPi) = 0 for i=0, 1, 3; and m(APk) = 0 for k=0, 1, 3. See the following diagram too (see Figure 1).
    Events, Processes and Additional Data for Control
    Computation begins when a user event is captured by the system (such as a mouse up event in an AcroForm field like a button or a checkbox).
    Checking Process
    If a checkbox is checked (TNj), it is noted with an indicator (P0).
    Shift Process
    Given a noted checkbox, the search for a candidate set of detail fields to use for the noted checkbox begins.
    The first candidate is the bottom of the sequence. This is also the current candidate, k. Thus k=3.
    The current candidate is remembered by marking (TSk,j) the detail fields indicator (APk).
    If k=0 then the shift process ends and the current candidate is the candidate.
    If k > 0 and m(APk-1) = 0, the current candidate becomes APk-1 and step 8c is repeated.
    If k > 0 and m(APk-1) != 0, then the shift process ends and the current candidate is the candidate.
    Unchecking Process
    If m(CPi) != 0 and m(CPi) = m(APk), then the checkbox can be unchecked (TRk,i).
    Shift Process
    If m(APk)=0 and m(APk+1) > 0 then shift (TSk,m(APk+1)). At the end of this shift, m(APk) > 0 and m(APk+1) = 0. Let k = k + 1.
    If m(APk+1)>0 then repeat 9a. If m(APk+1)=0 then the shifting process ends.
    Last Events and Proceses
    Details fields can be initialized (TIk,j) and displayed (TDk,j) or cleared (TCk,j) and hidden (THk,j). These actions depend only on m(APk). However it would be a good idea to trigger these functions right after a shift process ends and on affected details fields.
    Process Diagram of One Checked Checkbox
    Figure 1 is a process model of the checkbox process with one checked checkbox.
    Figure 1 Checkbox Process Model
    Regards,
    John

  • How Do You Fill in a Series?

    How do you fill in a series? On Excel it's so easy, I've been trying to figure this out all day on iWork 09. I have found all the other fill options but I can't find out how to fill in a series anywhere. I've tried everything and I'm really annoyed at this point, please help =(

    And of course it's well described in the Numbers User Guide available to every users from the Help menu.
    Yvan KOENIG (VALLAURIS, France) vendredi 28 août 2009 10:31:29

  • How to fill a date series but skip cells

    How do you fill a date series, but skip cells.

    Wayne Contello wrote:
    A1 is the starting date
    A3=A$1+(ROW()-1)/2
    copy cell A3 and paste in A5, 7, 9, etc
    Alternatively,
    A3 = A1+1
    Leave A2 blank
    Select cells A2 and A3 then grab the "fill" handle (the little yellow circle) and drag down to fill in the rest of the column with the pattern of alternating date/blank cells

  • Fill series of vertical cells

    How do you fill a series of cells in increasing numerical order in Number 3.5?

    in cell A1 type "1"
    in cell A2 type "2"
    select cells A1 and A2 then hover over the bottom edge and drag the yellow dot that appears down as needed
    you can enter other patterns:
    10
    20
    Monday
    Tuesday
    Jan 2012
    Feb 2012
    1/1/2012
    1/6/2012
    etc

  • "Fill Down" automatically creates series of dates

    Stupid question perhaps, but here goes:
    I'm working with a spreadsheet that has a date column.
    I typed a date into a cell then attempted to copy that same date into some cells below it by using the "fill down" command. Instead, it created a series of dates, adding one day per row.
    Isn't there some way to just copy the date to the cells below without creating a series???
    Thanks!

    micheleandray wrote:
    Isn't there some way to just copy the date to the cells below without creating a series???
    Michele,
    Copy/Paste and Fill are different operations and have different results. Had you Copied the first entry and Pasted it to the remaining cells, you would have gotten the result you wanted. The Fill feature assumes that you want a series rather than a duplication.
    Jerry

  • How to change the color (or fill) of a SINGLE bar in a bar chart series

    I've searched the forum and consulted the help system in Keynote '09, and I can't find the answer.
    I have a simple bar chart with 6 bars. I want to select two of the bars and turn them a different color. I only seem to be able to change the color of the series as a whole. I can only select the series as a whole, and I can't Ungroup it or even copy it to the clipboard (it beeps!). I've tried changing the color of the number represented by the bar in the underlying table; can't be done.
    Am I attempting something impossible? If so (grumble grumble), why hasn't Apple made it possible? It seems like an obvious thing to allow.

    It is unfortunately impossible -- the individual bars are not selectable. As a workaround you can a) overlay them with a rectangular object, or b) overlay them with a second chart identical to the first, with all the bars except the two set to zero.

  • Creating a weekly fill series

    Hello, I would like to create a column in Numbers with the cells incrementing by a week on the way down. The series would look like 1/1/10, 1/8/10, 1/15/10 and so on.  I can do one daily but would like to have a weekly series.  Thanks!

    Enter the pattern in cells of the same column then select the cells you entered
    and expand as far down as you want :

  • My hard disk suddenly filled up and I can't find the files

    that are causing my hard disk to fill up. I was watching some videos that was on an external drive on my computer using vlc. I finished one movie (.avi file) and then tried to watch the second one in the series. However, the vlc application would not open it. I tried several times. I gave up and tried opening it with the quicktime player. Even though it opened, I got a message that my startup disk was full. That was strange because I am sure I had about 20GB as I was keeping a close eye on my hard disk capacity. I had recently deleted many video files and so I had a rough idea of how much hard disk I should have.
    Anyway, I deleted some movie files to make space and then I checked my hard disk with Disk Inventory X.
    When I did that, I found some strange files.
    There are some temp files some of which are 1GB. The path is private/var/vm/tmp. One file is labeled a Quick Time player launcher document.
    Another one is called "sleepimage". Format is HFS+. It is 4GB. It was modified recently (yesterday). Its path is private/var/vm/sleepimage.
    I don't want to delete anything important by accident.
    I just think this is strange and want to find these files but when I click "Open", it says I don't have permission and I have to locate them in Finder. However, when I type "sleepimage" in Finder, nothing comes up.
    I really want to get rid of any files that take up a lot of space on my computer and that shouldn't be there. Do you think this is some kind of virus? And that's why my computer is filling up with some strange files. There are also many swapfile documents that are 1GB in size.

    I think the problem is Quick Time Player. I am using OS 10.6.8 by the way.
    I tried it out again.
    I had about 26 GB of space before I played an .avi video.
    After the movie started to play (it was slow to load), I got a warning message that my startup disk was full. I opened Disk Utility and it told me I had no space left (about 20 MB or something like that was left).
    I watched to the end of the movie.
    Then I quit Quicktime Player.
    And I shut down the computer.
    I turned on the computer and checked Disk Utility. I have about 26 GB of space.
    I think for some reason Quicktime Player uses up a lot of the disk space when it runs movies that are problematic. This movie I was watching did not open with vlc.
    I normally use vlc to watch movies.
    Probably it doesn't use up this much space when the movie is OK.
    I think there's a problem with this particular movie. It is about 50 MB so it's not that big a file. I watch .smi subtitles with it. The Quicktime Player automatically loads the subtitle file in this case because the subtitle file has the same name as the movie file.
    I watched about 10 movie files from the same series that I downloaded together and did not have any problem watching them. I watched them on vlc. But this latest movie had problems I think (as I repeat). It did not load on vlc even though I waited for a minute, and normally movies load instantly on vlc. 
    So I think that movie file caused problems. It made QT player use up a lot of hard disk space.
    I had better avoid watching that movie in the future. I don't want it to wreck my hard drive.
    So to sum up, everything is back to normal. I have the hard disk space that I should have. However, I am scared of damaging my hard drive due to shonky movie files that eat up all the space when they are played using QT player, and so I will not watch those files in the future, as I do not know why the files do that.

Maybe you are looking for

  • White Macbook no longer booting

    Hi there, My first generation white Macbook (June 2006) isn't booting up since failing to wake from sleep... I normally shut the lid to sleep it, and this time instead of waking up and doing the normal disc drive noise, it appeared to get stuck... wi

  • SOA 11g and OSB

    Hi Guru's is there any way where SOA 11ga nd OSB can share same Weblogic install or we need to install them seperately Regards Sahil

  • Can I use functional script as a load script ?

    I'm wondering if there is any chance to use functional script that I did in openscript as a script for load testing? Is there any converter or something to do that ? Thanks!

  • Is it okay to leave the iPod charging even if it's already fully charged?

    Someone told me it'll drain the battery's capacity or something. Is this true? Any info would be appreciated!

  • Installing Mac OS X Snow Leopard on older MacBook

    I have recently bought a MacBook Pro. I want to give my old MacBook to my mother, but don't have the original discs that came with it to do a factory reset. Is it possible to do this using the discs that came with my MacBook Pro? The old MacBook was