How do I make a cell larger vertically?

I have numbers on my iPad and need to make some cells larger both horizontal and vertical.  Does anyone know how to do this?

Hi avallone24,
On the iPad it looks like this:
You need to tap out on the edges of the table and then drag where you see the two little white lines in the blue.
I don't think there is a Row & Column Size panel anywhere in the Numbers iOS interface so it's less precise than on the Mac.
SG

Similar Messages

  • How can I make the typeface larger for the Calendar?

    How can I make the typeface larger in Ical calendar?

    Thank you Wayne, that worked perfectly. I now wonder why I never tried that, a ~20 year Mac user!
    Paul

  • How can i make the text go vertically in numbers

    How can I make the text vertical in numbers?  I have merged the cells and cannot find an option for making it go vertical as opposed to horizontal.

    I already gave two tools to fit this kind of needs.
    tip #1 :
    --{code}
    --[SCRIPT write_vertically]
    Enregistrer le script en tant que Script : write_vertically.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Utilisateurs:<votreCompte>:Bibliothèque:Scripts:Applications :Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Saisir dans une cellule le mot à écrire verticalement puis le sélectionner.
    ATTENTION, il ne faut pas sélectionner la cellule mais le mot qui doit apparaitre surligné.
    Aller au menu Scripts , choisir Numbers puis choisir “write_vertically”
    Le script colle dans la cellule le mot apès avoir inséré un return entre tous les caractères.
    Pour mon usage personnel j'associe un raccourci à ce script grace à FastScripts.
    --=====
    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”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script: write_vertically.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.
    In a cell, type a word to write vertically then select it.
    CAUTION, don’t select the cell but the word which must be highlighted.
    Go to the Scripts Menu, choose Numbers, then choose “write_vertically”
    The script insert in the cell the word after inserting a return between every characters.
    For my own use, I link a shortcut to the script thank to FastScripts.
    --=====
    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.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/12/17
    2012/01/01 no longer use a local variable, use result
    --=====
    on run
    Clear the clipboard *)
      set the clipboard to ""
    Copy the selection in the clipboard *)
              my raccourci("Numbers", "c", "c")
    Loop waiting that the clipboard is really filled *)
              repeat
                        try
                                  if (the clipboard as text) is not "" then exit repeat
                        on error
                        end try
              end repeat
    Extract the clipboard's content *)
      the clipboard as text
    Insert return between every characters *)
              my recolle(every character of result, return)
    Fill the clipboard with the edited string *)
      set the clipboard to result
    Paste in the cell *)
              my raccourci("Numbers", "v", "cas")
    end run
    --=====
    on recolle(l, d)
              local oTIDs, t
              set oTIDs to AppleScript's text item delimiters
              set AppleScript's text item delimiters to d
              set t to l as text
              set AppleScript's text item delimiters to oTIDs
              return t
    end recolle
    --=====
    on activateGUIscripting()
      (* to be sure than GUI scripting will be active *)
              tell application "System Events"
                        if not (UI elements enabled) then set (UI elements enabled) to true
              end tell
    end activateGUIscripting
    --=====
    ==== Uses GUIscripting ====
    This handler may be used to 'type' text, invisible characters if the third parameter is an empty string.
    It may be used to 'type' keyboard raccourcis if the third parameter describe the required modifier keys.
    I changed its name « shortcut » to « raccourci » to get rid of a name conflict in Smile.
    on raccourci(a, t, d)
              local k
              tell application a to activate
              tell application "System Events" to tell application process a
                        set frontmost to true
                        try
                                  t * 1
                                  if d is "" then
      key code t
                                  else if d is "c" then
      key code t using {command down}
                                  else if d is "a" then
      key code t using {option down}
                                  else if d is "k" then
      key code t using {control down}
                                  else if d is "s" then
      key code t using {shift down}
                                  else if d is in {"ac", "ca"} then
      key code t using {command down, option down}
                                  else if d is in {"as", "sa"} then
      key code t using {shift down, option down}
                                  else if d is in {"sc", "cs"} then
      key code t using {command down, shift down}
                                  else if d is in {"kc", "ck"} then
      key code t using {command down, control down}
                                  else if d is in {"ks", "sk"} then
      key code t using {shift down, control down}
                                  else if (d contains "c") and (d contains "s") and d contains "k" then
      key code t using {command down, shift down, control down}
                                  else if (d contains "c") and (d contains "s") and d contains "a" then
      key code t using {command down, shift down, option down}
                                  end if
                        on error
                                  repeat with k in t
                                            if d is "" then
      keystroke (k as text)
                                            else if d is "c" then
      keystroke (k as text) using {command down}
                                            else if d is "a" then
      keystroke k using {option down}
                                            else if d is "k" then
      keystroke (k as text) using {control down}
                                            else if d is "s" then
      keystroke k using {shift down}
                                            else if d is in {"ac", "ca"} then
      keystroke (k as text) using {command down, option down}
                                            else if d is in {"as", "sa"} then
      keystroke (k as text) using {shift down, option down}
                                            else if d is in {"sc", "cs"} then
      keystroke (k as text) using {command down, shift down}
                                            else if d is in {"kc", "ck"} then
      keystroke (k as text) using {command down, control down}
                                            else if d is in {"ks", "sk"} then
      keystroke (k as text) using {shift down, control down}
                                            else if (d contains "c") and (d contains "s") and d contains "k" then
      keystroke (k as text) using {command down, shift down, control down}
                                            else if (d contains "c") and (d contains "s") and d contains "a" then
      keystroke (k as text) using {command down, shift down, option down}
                                            end if
                                  end repeat
                        end try
              end tell
    end raccourci
    --=====
    --[/SCRIPT]
    --{code}
    tip #2 :
    --{code}
    --[SCRIPT rotate_cell_contents]
    Enregistrer le script en tant que Script : rotate_cell_contents.scpt
    déplacer le fichier ainsi 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électionner une cellule dont le texte doit être tourné de 90 degrés.
    Aller au menu Scripts , choisir Numbers puis choisir “rotate_cell_contents”
    --=====
    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”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script: rotate_cell_contents.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 a cell whose contents must be rotated for 90 degrees.
    Go to the Scripts Menu, choose Numbers, then choose “rotate_cell_contents”
    --=====
    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.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/06/23
    2011/06/26 -- No longer use an auxiliary text box. Now keep the text attributes.
    2012/01/31 -- edited for Lion
    --=====
    on run
              local dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2
              local le_texte, la_largeur, la_hauteur, myNewDoc
              my activateGUIscripting()
    Extract properties of the source/target cell *)
              set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
              tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
                        set selection range to range (name of column colNum1 & name of row rowNum1)
              end tell
    Cut*)
              my raccourci("Numbers", "x", "c")
    Trigger Preview *)
              tell application "System Events"
                        if "Preview" is not in (name of every application process) then launch application "Preview"
              end tell
      delay 0.2 -- required
    New document from the clipboard *)
              my raccourci("Preview", "n", "c")
    Rotate to left *)
              my raccourci("Preview", "l", "c")
    Copy *)
              my raccourci("Preview", "c", "c")
    Quit *)
              my raccourci("Preview", "q", "c")
              (system attribute "sys2") < 7
              if result then
    Click the [Don't Save] button in the warning sheet *)
                        tell application "Preview" to activate
                        tell application "System Events" to tell application process "Preview" to tell window 1
                                  name of buttons
                                  repeat 50 times
                                            delay 0.1
                                            if exists sheet 1 then exit repeat
                                  end repeat
                                  tell sheet 1 to click button 2
                        end tell
              end if
    Back to Numbers *)
              tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
      -- just reset the focus on the table
              end tell
    Paste in the cell *)
              my raccourci("Numbers", "v", "c")
    end run
    --=====
    set { dName, sName, tName,  rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    on get_SelParams()
              local d_name, s_name, t_name, row_num1, col_num1, row_num2, col_num2
              tell application "Numbers" to tell document 1
                        set d_name to its name
                        set s_name to ""
                        repeat with i from 1 to the count of sheets
                                  tell sheet i to set maybe to the count of (tables whose selection range is not missing value)
                                  if maybe is not 0 then
                                            set s_name to name of sheet i
                                            exit repeat
                                  end if -- maybe is not 0
                        end repeat
                        if s_name is "" then
                                  if my parleAnglais() then
                                            error "No sheet has a selected table embedding at least one selected cell !"
                                  else
                                            error "Aucune feuille ne contient une table ayant au moins une cellule sélectionnée !"
                                  end if

  • How can I make a photograph large enough for large format printing?

    Is there a way to make an image larger on photoshop or illustrator? I will be printing on a large format latex printer. So the printer itself is excellent but its the image that i am struggling to acquire.
    I have basic knowledge of the programmes but if you could explain it to me i could figure it out.....
    I am aware of rasterize and vectors, but please  could you explain how they work, and if that is my solution.
    I want to keep the original photograph as realistic as possible (would prefer not to have it traced on illustrator) and from research it says simply increasing the image size amount of pixels on photoshop does not help...perhaps it does, if you know please help!
    This will be a print for an interior wall of an exhibition trailer, and we want to cover all the walls. Plus in future we will be printing for vehicle wraps so I need this knowledge! Help me

    Let e try to explain briefly...
    "Is there a way to make an image larger on photoshop or illustrator? I will be printing on a large format latex printer. So the printer itself is excellent but its the image that i am struggling to acquire.
    - The actual resolution necessary to print grand format depends on the printer.  Most of the large-to-grand format inkjets print at 600dpi.  Photoshop is the better application for sizig images, while Illustrator is the better application for sizing graphics ( ie., logos ) and type.  Use Illustrator to layout both the images and the graphics.  You typically would send the print vendor an appropriate PDF file ( that can be scaled ).
    I have basic knowledge of the programmes but if you could explain it to me i could figure it out.....
    I am aware of rasterize and vectors, but please  could you explain how they work, and if that is my solution.
    I want to keep the original photograph as realistic as possible (would prefer not to have it traced on illustrator) and from research it says simply increasing the image size amount of pixels on photoshop does not help...perhaps it does, if you know please help!
    - You most certainly can use photographs in large format.  The problem is you will have to setup the file scaled down.  In some cases, the output will have to be assembled in sections.  Let's take a section of 10 feet high x 36 feet long.  You'd setup your Illustrator file 2.5 feet high x 9 feet long ( 25% ) or 30 inch x 108 inch to be enlarged at the printer 400%.  Each time you enlarge an image 2x you cut its resolution in half.  So, an image starting at 300ppi will end up at 75ppi.  So, your image file would need to be 300ppi at 25%. 75ppi sounds low, right?  In actuality, it is enough to print grand format and the image appears smooth. Now the question becomes, how do I get an image large enough in Photoshop?  Remember, you'll need a 30" x 108" image plus bleed at 300ppi ( Placed in Illustrator at 100% ).  There are applications like Genuine Fractals or Image Doctor's "Blowup" which will enlarge an image file without degradation.  I use Genuine Fractals and the results are phenominal.
    This will be a print for an interior wall of an exhibition trailer, and we want to cover all the walls. Plus in future we will be printing for vehicle wraps so I need this knowledge! Help me "
    - It'll become easier as you do more of this type of work.  The amount you end up scaling is up to you.  There are limitations as to how big a document can be in Illustrator.  I like 25% because it is similar to working on a print ad that is high resolution.  Another thing to remember is set your raster effects to High in Illustrator.  They will be retained in the PDF which will be enlarged 400% and the ending raster effects will be 75ppi just like the image.  Also, feel free to contact the print vendor and ask them questions.  You could send them what I've written here and see if they agree.  Let me know if you have any further questions.

  • How can I make the text larger in this flashing box from Old Toad?

    I'm trying to use flashing text here: http://web.me.com/phelpssculpture/Site/hands_on.html
    which I copied from OldToad's site here:http://web.me.com/toad.hall/Demo_1/Miscitems.html
    I can't figure out how to make the text larger.
    Any suggestions?
    Thanks, David

    At the end of the code, you can find
    document.write('You can add Blinking Text!');
    insert a "size" attribute to "font" tag (eg. size="10")
    document.write('You can add Blinking Text!');

  • Bridge CS5...thumbnails.  How can I make the thumbnails larger?

    I can easily make my preview larger but cant seem to find anything to tell me how to make the thumbnails larger so they are easier
    to see.  Any suggestions?

    In the lower right corner there is a slider that will change the size of the thumbnails.

  • HT1150 My question on printing is how do you make the print larger than it actually is on paper or is that possible?  I know you can enlarge print on the screen, that is easy, but once it prints it's always to small.  How can I make it bigger or is that p

    my question is on printing.  i know that you can make the print larger on the screen by adjusting it, but then when it comes out on paper it's just as small again.  how do I set my actual printer or my iMac to print the actual paper print larger? 

    Hello, it depends what App & Document type, some say PDFs have the font stuck at a certain sise, but say in Text Edit, open a document, Highlight some text the CMD+a to Select All, then type CMD+t to get the Font/Text size menu, select a bigger size.

  • How do I make a cell equal a certain degree of a 360° zodiac point?

    I need to make a cell equal a certain degree on a 360° zodiac point when typing a number from 0-359. For example, if I would put in the number "10" in a cell it would give me "10 Aries" as a result in the cell. Doing 360 "if, then" statements is not desirable, and I don't think it is possible in Numbers. Usually spreadsheet programs have a limit on the number of "if, then" statements that can be "nested" in a cell. One friend recommended "concatenating," but this sort of makes my head spin at the moment. Any help would be appreciated. Below are some "if, then" statements that I put into Microsoft Excel before it said I could not put in anymore.
    =IF(OR(D1=0),"0 Aries",IF(OR(D1=1),"1 Aries",IF(OR(D1=2),"2 Aries",IF(OR(D1=3),"3 Aries",IF(OR(D1=4),"4 Aries",IF(OR(D1=5),"5 Aries",IF(OR(D1=6),"6 Aries",IF(OR(D1=7),"7 Aries",IF(OR(D1=8),"8 Aries",IF(OR(D1=9),"9 Aries",IF(OR(D1=10),"10 Aries",IF(OR(D1=11),"11 Aries",IF(OR(D1=12),"12 Aries",IF(OR(D1=13),"13 Aries",IF(OR(D1=14),"14 Aries",IF(OR(D1=15),"15 Aries",IF(OR(D1=16),"16 Aries",IF(OR(D1=17),"17 Aries",IF(OR(D1=18),"18 Aries",IF(OR(D1=19),"19 Aries",IF(OR(D1=20),"20 Aries",IF(OR(D1=21),"21 Aries",IF(OR(D1=22),"22 Aries",IF(OR(D1=23),"23 Aries",IF(OR(D1=24),"24 Aries",IF(OR(D1=25),"25 Aries",IF(OR(D1=26),"26 Aries",IF(OR(D1=27),"27 Aries",IF(OR(D1=28),"28 Aries",IF(OR(D1=29),"29 Aries",IF(OR(D1=29),"29 Aries",IF(OR(D1=30),"0 Taurus",IF(OR(D1=31),"1 Taurus",IF(OR(D1=32),"2 Taurus",IF(OR(D1=33),"3 Taurus",IF(OR(D1=34),"4 Taurus",IF(OR(D1=35),"5 Taurus",IF(OR(D1=36),"6 Taurus",IF(OR(D1=37),"7 Taurus",IF(OR(D1=38),"8 Taurus",IF(OR(D1=39),"9 Taurus",IF(OR(D1=40),"10 Taurus",IF(OR(D1=41),"11 Taurus",IF(OR(D1=42),"12 Taurus",IF(OR(D1=43),"13 Taurus",IF(OR(D1=44),"14 Taurus",IF(OR(D1=45),"15 Taurus",IF(OR(D1=46),"16 Taurus",IF(OR(D1=47),"17 Taurus",IF(OR(D1=48),"18 Taurus",IF(OR(D1=49),"19 Taurus",IF(OR(D1=50),"20 Taurus",IF(OR(D1=51),"21 Taurus",IF(OR(D1=52),"22 Taurus",IF(OR(D1=53),"23 Taurus",IF(OR(D1=54),"24 Taurus",IF(OR(D1=55),"25 Taurus",IF(OR(D1=56),"26 Taurus",IF(OR(D1=57),"27 Taurus",IF(OR(D1=58),"28 Taurus",IF(OR(D1=59),"29 Taurus",IF(OR(D1=60),"0 Gemini",IF(OR(D1=61),"1 Gemini",IF(OR(D1=62),"2 Gemini"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))

    Hi Mike,
    The first thing I noticed in your formula was the multiple OR() statements with a single argument.
    =IF(OR(D1=0),"0 Aries"
    OR(condition1,condition2,...) returns TRUE if any of the arguments is TRUE. With only one condition, it returns TRUE if D1=0 and FALSE if D1 contains any value except 0. The bare boolean statement D1=1 returns the same results with the same conditions.
    Although it's not too difficult to improve the efficiency of the formula, I would drop IF and use a little bit of math and the CHOOSE function (plus some concatenation) for what you want:
    From your formula, I gather each of the houses occupies a 30° sector, starting at 0, 30, 60, 90, etc. with "0 housename" at each of those values.
    To simplify the formulas I've done the calculations in three steps:
    A value in the range 0 to 359 is entered in D2.
    E2 is an intermediate cell that calculates the Quotient of that value divided by 30, then adds 1 to the result.
    =QUOTIENT(D2,30)+1
    This gives an index number that tells which house (1=Aries, 2=Taurus, 3=Gemini, etc.) that Zodiac point lies in.
    F2 is a second intermediate cell that calculates the remainder of the value in D2 divided by 30, the number appended before the name of the house.
    =MOD(D2,30)
    G2 choses the name by its position in a list of choices, basing the choice on the index number calculated in E2, then concatenates the number calculated in F2, a single space, and the name returned by CHOOSE into a single text string and returns that string to the cell.
    =F2&" "&CHOOSE(QUOTIENT(D2,30)+1,"Aries","Taurus","Gemini","3","4","5","6","7","8","9 ","10","11","12")
    To save space,here (and to avoid having to look up the rest of the Zodiac signs and their order ), I've used numbers in place of the rest of the names.
    The separate parts may be combined into a single formula:
    =MOD(D2,30)&" "&CHOOSE(E2,"Aries","Taurus","Gemini","3","4","5","6","7","8","9","10","11","")
    For details (and further examples) see the descriptions of each of these functions in the iWork Formulas and Functions User Guide. The guide, and the equally useful Numbers '09 User Guide, may be downloaded using the Application menu (in Numbers, the "Numbers" menu) items with those names.
    Regards,
    Barry

  • How can I make one cell search multiple other cells for a string of text and return whether or not the string appeared in the cells searched?

    https://www.icloud.com/iw/#numbers/BAI31boMQXsGKc8NH22BlqWRzbs8PdgWBs-F/2014-15_ Curriculum_Planning_w_CCSS_(Web_Shared)
    My document is above, if anyone wants to help this crazy teacher invent a better lesson planner.
    Here's my predicament.  The state in which I teach requires teachers to keep up with which of the Common Core State Standards (CCSS) their instruction is addressing and when the standards were addressed.  I got the bright idea to do this through a spreadsheet in Numbers because our school is getting iPads this year, so it'd be pretty sweet to be able to assemble all of my lesson plans in one massive spreadsheet.  On the "AP Lesson Plans" sheet, I've got a few weeks worth of lesson plans entered in.  I'm planning on going in and using the drop-down menu next to each lesson plan to add all the CCSS on a per-day basis.  This is simple enough, but here's where I run into a problem.
    I want the "AP Standards" sheet to concatenate, in cells D3 through G76, the dates on which a standard was covered.  What I need is some way for, say, Cell D3 to look at the table on the "AP Lesson Plans" sheet and concatenate the dates of every lesson which has the standard in column A (In this instance, RL.11-12.1).  At the end of the day, the functionality I need is that I can enter my lessons and CCSS on the "AP Lesson Plans" sheet and go to the other sheet and see a summary of which standards have been addressed, when, and how often.
    If that's as clear as mud, well, I teach literature, not technical writing, so my apologies.  I'm more at home with Jonathan Swift than spreadsheets.  I'll gladly help you help me if you'd let me know what you need to know.  Oh, and to illustrate my knowledge level (just enough to be dangerous), I've left you the formula of my best stab at making cell D3 behave as desired.  It's the gray box on the "AP Standards" sheet.  Yikes.

    Hi Arrdenet,
    Congratulations on the nested IFs. I haven't tested that formula, but it is impressive. It will be very difficult to debug if it doesn't work, and I think it would make Numbers very slow.
    Here is a different approach. After you enter all the CCSS, add another column with HLOOKUP.
    Edit:
    B2 (and Fill Down)
    A2 (and Fill Down)
    =IFERROR(HLOOKUP(A$1,C2:E2,1,0),"")
    HLOOKUP looks for the value in A1 in all the CCSS columns.
    IFERROR is to stop the error triangles appearing and returns "" (NULL) instead.
    Then sort by column A.
    Not a complete answer, but it might get you started.
    Regards,
    Ian.

  • In Numbers, how can I make a cell reference a constant in a formula?

    This is a basic question, but I am not sure of the answer. I am trying to calculate a previous SUM that I have by a column. But when I calculate it, it keeps looking for data in the cells after the SUM that I already have.
    In other words, how can I get a constant cells value into my equation?
    Any help would be great!
    (In excel, I could do it just by placing $ around my cell field. Like H23 would be $H23$. THanks!)

    JJ,
    Numbers works exactly like Excel in this regard. To change H23 from a reference that will change if the formula is moved to a fixed cell reference, make it $H$23.
    Regards,
    Jerry

  • How do you make the toolbar larger, mac desktop?

    Can anyone tell me how to make my toolbar, at the top of the display, larger? it is very tiny. I'm visually impaired. there doesn't seem to be any accessability program on the mac. I'm used to a full accessability program on windows can anyone help me reprogram the display. meaning specifically the font. we did it before on our ancient mac.. thanks for your help.

    You would have to lower the display resolution to increase the size of the screen menubar. Some system fonts can be changed using TinkerTool. Other tools you can use are found in the Accessibility preferences.

  • How can i make a cell set a timestamp when I click a checkbox in numbers for iPad?

    I am trying to make it so that when I click a checkbox, the cell next to it creates a timestamp.  I have very put of practice making spreadsheets, and this new format is giving me a hard time.
    Thanks for your help!

    Under the previous version of Numbers for iOS at least, you could use the loophole/bug in the IF statement that would execute on TRUE, but do nothing if FALSE, if you didn't explicitly set it. This would allow the spreadsheet to have a sense of before and after that would allow for all sorts of time stamping possibilities. In fact, I wrote an entire complex spreadsheet based on this loophole. It worked great!  But I was also aware that Apple would likely close this loophole to make the IF statement conform to their documentation, and sure enough, they did, and now my spreadsheet is utterly useless.
    Maybe I'm just stupid, but with this latest update, I don't see any way to hold a static time stamp. I thought it would be doable by some contorted means, but after several hours, I still haven't come up with anything. Pity, too, because it was quite useful.
    Would someone please tell me how stupid I am.

  • The bookmarks listing on my laptop is so narrow I can't distinguish among several bookmarks that have similar names. How do I make the bookmarks large enough to read details on, either on the sidebar or the drop down menu?

    What kind of details do you need? I have a bunch of bookmarks imported from Safari (yes, it's a Mac iBook). In Safari I get a whole page for bookmarks and can see easily which one is which. In Firefox they are stuffed into a narrow space I can't seem to widen and I can't tell a bunch of them apart. The categories are fine because they are one word or two, the specific listings however, are not fine. In one particular category they start the same way, so I have a whole bunch of nearly identical bookmarks and the "abbreviated" listing is not sufficient since it doesn't seem to include the distinguishing features. That's pretty much it. This isn't a problem for all bookmarks, just some. I need to make the window wider so I can see more detail and can't figure out how to do it.
    Thanks, Carol.

    see https://support.mozilla.com/en-US/questions/845800
    Bookmarks Toolbar Fx4 Blue/Folders, Red/Bookmarks - Themes and Skins for Browser - userstyles.org
    /* widen all bookmarks dropdown menus -- Chris Ilias 2007-01-12*/ menu.bookmark-item, menuitem.bookmark-item { max-width: 36em !important; }
    http://userstyles.org/styles/46947/
    try 250px instead of 36em and up or down from there.

  • How do I make the pages larger with firefox? I like to use this but text is was to small. So I always go back to internet explorer. HELP

    I don't have any tool space on the top of the page. only home and favorites google too. I also don't have to bottom where I can press to get to my programs. I do like firefox. But the text is way to small. How do I fix these things?

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: Command+Shift+F).
    *https://support.mozilla.org/kb/how-to-use-full-screen
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.
    Click the Maximize button (top right corner of the Navigation Toolbar) to leave full screen mode or right-click empty space on a toolbar and choose "Exit Full Screen Mode" or press the F11 key.
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • How do I make a cell reference the condition in a COUNTIF statement?

    I have a formula:
    =COUNTIF(Funds Under Management by Client :: D2:D91,">3.0")
    However, I want to replace the condition '3.0' with a reference to another cell eg B2 so that I can play around with different values and have them immediately reflected in the COUNTIF total. Problem is, I can't find the right syntax to achieve this. I want the formula to actually look something like this:
    =COUNTIF(Funds Under Management by Client :: D2:D91,">B2")
    Is this possible, and if so, how do I do it? Making the formula refer to a cell saves me from having to manually change 90 odd cells in the spreadsheet every time I want to vary the criteria.
    TIA
    Message was edited by: Basilisk

    Fantastic! That worked great. Many thanks for your help. Simple when you know how!
    Message was edited by: Basilisk

Maybe you are looking for