In need of assistance using checkbox and conditional formats

Hello,
I'm trying to set up a command to meet the following:
When I opt to use a checkbox format in say cell "G2" - I would like to setup a conditional format along the lines of...
=IF G2 is TRUE (i.e. checked), then change the color of cell "A2" to some color.
Can anyone help me with the line command for this?

L.
Seems like it should be easy, doesn't it? There are options to doing this, but none are exactly obvious. The problem for you is that conditional formatting is based on the content of the cell being formatted, not some other cell. A typical use is to, say, bold content over a certain limit, or make the display of a zero value invisible.
In Numbers08, you have only a couple of options:
Use an IF-test to alter your content, or use an overlay table or tables. The solution you pick will depend on whether the content was calculated or input directly. If the content was input from the keyboard, that's the most difficult situation since there is no equation to modify.
So, do you want to change the color of the Text, or the Fill, of cell A2? And, how important is this formatting to you? If it involves extra columns or tables and a lot of fussing around, do you still think you need it?
Jerry

Similar Messages

  • In the icloud settings, i am told i need to accept the terms and conditions to use icloud, but when i try to do so, i get a message "unable to connect to server". This has been going on for a week. There is no problem with either my wifi or cellular conne

    In the icloud settings, I am told I need to accept the terms and conditions to use icloud. However, when I click on "Terms and conditions", I get a message "unable to connect to server". This has been happening for a week now since I upgraded to iOS 7.06. There is no problem with my wifi or cellular connectivity, all other applications work perfectly. P.S.I have never used icloud before, but wish to do so now. How do I overcome this problem?

    Have you turned the iPad off then back on? That often helps with problems.

  • How to use Checkbox  and radio buttons in BI Reporting

    Hi BW Experts,
       My Client has given a report in ABAP format and the report has to be develop in BI.It contains Check boxes and the radio buttons. I don’t know how to use Checkboxes and radio buttons in Bex.For using this option, do we need to write a code in ABAP.Please help on this issue.
    Thanks,
    Ram

    Hi..
    Catalog item characteristic
    - Data element
    - Characteristic type
    Entry type
    List of catalog characteristics
    Designer
    Format (character)
    Standard characteristic
    Alternative: Master characteristic
    (used for automatic product
    assignment)
    Simple entry field
    Alternatives:
    Dropdown listbox or radio button
    list

  • Example of WAIT and CONTINUE using checkBox and thread and getTreeLock()

    I had so much trouble with this that I descided to
    post if incase it helps someone else
    // Swing Applet example of WAIT and CONTINUE using checkBox and thread and getTreeLock()
    // Runs form dos window
    // When START button is pressed program increments x and displys it as a JLabel
    // When checkBox WAIT is ticked program waits.
    // When checkBox WAIT is unticked program continues.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.io.*;
    public class Wc extends JApplet {
    Display canvas;//drawing surface is displayed.
    Box buttonPanel;
    Box msgArea;
    public static JButton button[] = new JButton [2];
    public static JCheckBox checkBox[] = new JCheckBox[2];
    public static JLabel msg[] = new JLabel [2];
    String[] buttonDesc ={"Start","Quit"};
    public static final int buttonStart = 0;
    public static final int buttonQuit = 1;
    String[] checkBoxDesc ={"Wait"};     
    public static final int checkBoxWait = 0;
    public boolean wait;
    public Graphics g;
    //================================================================
    public static void main(String[] args){
    Frame f = new Frame();
    JApplet a = new Wc();
    f.add(a, "Center"); // Add applet to window
    a.init(); // Initialize the applet
    f.setSize(300,100); // Set the size of the window
    f.show(); // Make the window visible
    f.addWindowListener(
    new WindowAdapter(){
    public void windowClosing(WindowEvent e){System.exit(0);}
    }// end main
    //===================================================
    public void init() {
    canvas = new Display();
    setBackground(Color.black);
    getContentPane().setLayout(new BorderLayout(3,3));
    getContentPane().add(canvas, BorderLayout.CENTER);
    buttonPanel = Box.createHorizontalBox();
    getContentPane().add(buttonPanel, BorderLayout.NORTH);
    int sbZ;
    // add button
    button[0] = new JButton(buttonDesc[0]);
    button[0].addActionListener(canvas);
    buttonPanel.add(button[0]);
    button[1] = new JButton(buttonDesc[1]);
    button[1].addActionListener(canvas);
    buttonPanel.add(button[1]);
    // add checkBox
    sbZ=0;
    checkBox[sbZ]=new JCheckBox(checkBoxDesc[sbZ]);
    checkBox[sbZ].setBackground(Color.white);
    checkBox[sbZ].setOpaque(true);
    checkBox[sbZ].addActionListener(canvas);
    buttonPanel.add(checkBox[sbZ]);
    msgArea = Box.createVerticalBox(); // add message
    sbZ=0;
    msg[sbZ]=new JLabel("1",JLabel.LEFT);
    msg[sbZ].setOpaque(true);
    msg[sbZ].setBackground(Color.black);
    msg[sbZ].setForeground(Color.red);
    msgArea.add(msg[sbZ]);
    getContentPane().add(msgArea, BorderLayout.SOUTH);
    } // end init();
    //===================================================
    public void stop(){canvas.stopRunning();}
    //===================================================
    // The following nested class represents the drawing surface
    // of the applet and also does all the work.
    class Display extends JPanel implements ActionListener, Runnable {
    Image OSI;
    Graphics OSG; // A graphics context for drawing on OSI.
    Thread runner; // A thread to do the computation.
    boolean running; // Set to true when the thread is running.
    public void paintComponent(Graphics g) {
    if (OSI == null) {
    g.setColor(Color.black);
    g.fillRect(0,0,getWidth(),getHeight());
    else {g.drawImage(OSI,0,0,null);}
    }//paintComponent
    public void actionPerformed(ActionEvent evt) {
    String command = evt.getActionCommand();
    if (command.equals(buttonDesc[buttonStart])) {
    startRunning();
    if (command.equals(buttonDesc[buttonQuit])) {
    stopRunning();
    if (command.equals(checkBoxDesc[checkBoxWait])){
    System.out.println("cb");
    if (checkBox[checkBoxWait].isSelected() ) {
    wait = true;
    System.out.println("cb selected twait "+wait);
    return;
    wait = false;
    synchronized(getTreeLock()) {getTreeLock().notifyAll();}
    System.out.println("cb selected fwait "+wait);
    } // end command.equal cb wait
    } //end action performed
    // A method that starts the thread unless it is already running.
    void startRunning() {
    if (running)return;
    // Create a thread that will execute run() in this Display class.
    runner = new Thread(this);
    running = true;
    runner.start();
    } //end startRunning
    void stopRunning() {running = false;System.exit(0);}
    public void run() {
    button[buttonStart].setEnabled(false);
    int x;
    x=1;
    while(x>0 && running){
    x = x + 1;
    msg[0].setText(""+x);
    try{SwingUtilities.invokeAndWait(painter);}catch(Exception e){}
    //importand dont put this in actionPerformed
    if (wait) {
    System.out.println("run "+wait);
    synchronized(getTreeLock()) {
    while(wait) {
    System.out.println("while "+wait);
    try {getTreeLock().wait();} catch(Exception e){break;}
    } //end while(wait)
    } // end sync
    } // end if(wait)
    } // endwhile(x>0)
    stopRunning();
    } // end run()
    Runnable painter = new Runnable() {
    public void run() {
    Dimension dim = msg[0].getSize();
    msg[0].paintImmediately(0,0,dim.width,dim.height);
    Thread.yield();
    }//end run in painter
    } ; //end painter
    } //end nested class Display
    } //end class Wc

    I just encountered a similar issue.  I bought a new iPhone5s and sent my iPhone4s for recycling as it was in great shape, no scratches, no breaks, perfect condition.  I expected $200 and received an email that I would only receive $24.12.  The explanation was as follows:  Phone does not power on - Power Supply Error.   Attempts to discuss don't seem to get past a customer service rep that can only "escalate" my concern.  They said I would receive a response, but by email.  After 4 days no response.  There is something seriously wrong with the technical ability of those in the recycling center.

  • Using multiple 'and' conditions in a SQL query

    Is it possible to reduce the SQL required to query using multiple 'and' conditions, e.g. I have a query like the following:
    select stat.personal_id, appt.username, appt.password, apps.rgn_apt_id, apps.apy_apn_id
    from apy_ast_application_status stat, rgn_usr_user appt, rgn_aps_applications apps
    where stat.apy_apn_id = apps.rgn_apt_id
    and apps.rgn_apt_id = appt.rgn_apt_id
    and stat.application_completed is null
    and stat.application_started_date > '01-MAY-11'
    and stat.amount_paid is null
    and stat.personal_details = 'C'
    and stat.further_details = 'C'
    and stat.education = 'C'
    and stat.employment = 'C'
    and stat.personal_statement = 'C'
    and stat.choices = 'C'
    and stat.reference = 'C'
    and stat.student_finance = 'C'
    Is there a way, to reduce all the multiple 'and' queries, to be read from say one line? If you know what I mean.......

    Ah, Ok this looks nice, thanks very much. It doesn't quite run as is because the stat.amount_paid query value is 'is null', while the others are 'C'. I tried amending the relevant line to various versions of the following:-
    in (select 'is null' 'C','C','C','C','C','C','C','C' from dual)
    which doesn't work.
    I can get the following to work so I am assuming that the it is not possible to use different query values within the brackets of the 'in (select....' statement?
    select stat.personal_id, appt.username, appt.password, apps.rgn_apt_id, apps.apy_apn_id
    from apy_ast_application_status stat, rgn_usr_user appt, rgn_aps_applications apps
    where stat.apy_apn_id = apps.rgn_apt_id
    and apps.rgn_apt_id = appt.rgn_apt_id
    and stat.application_completed is null
    and stat.application_started_date > '01-MAY-11'
    and stat.amount_paid is null
    and (stat.personal_details, stat.further_details, stat.education,
    stat.employment, stat.personal_statement, stat.choices, stat.reference, stat.student_finance)
    in (select 'C','C','C','C','C','C','C','C' from dual)
    Thanks for everybodys help - the suggested alternatives seem so much more elegant

  • Asynchronous, but need Ack without using BPM and IDocs.

    Hi Experts,
                     I would like to do a scenario i.e., "Asynchronous communication, but need Acknowledgement without using BPM and also without using IDocs whether it is sender side or receiver side". Please help me.
    Thanks in advance
    Srihari.

    Without using BPM will be little longer process. But the alternative way is to add one more receiver in the receiver determination and send some file to that location with the actual mapping getting executed for the actual receiver. and in the second interface you can get the file created at second receiver back to the source location. But this will be little long as compared to synchronous scenarios.
    Flow:
    Source
              Receiver 1--> Actual mapping as per requirement
              Receiver 2(For Ack)--> Create a mapping with blank file sent to Receiver
    Receiver 2-->File Adapter--> Source through 2nd mapping/interface and keep the File adapter pooling interval around 5 sec or less so that you can get the file back to source location.
    Regards
    Anand

  • Can we use exceptions and conditions at the same time?

    can we use exceptions and conditions at the same time? Are there any dependencies between exceptions an conditions?

    Exceptions are used when there are some mistakes , or exceeds the supposed values, we can highligt that in different colours for enabling the validator to notice easily. In this we are giving conditions for considering the value as exceptions. suppose, if the values is out of the range -1 to +1 then exception.
    But conditions can be considered as the restrictions given in measure level also. So please elaborate what you meant by conditions

  • Was forced to install Adobe again (maybe just update it) and can't get past step 3/3 because its forcing me to buy it. now its half installed and i need to agree to terms and conditions..

    was forced to install Adobe again (maybe just update it) and can't get past step 3/3 because its forcing me to buy it. now its half installed and i need to agree to terms and conditions..

    Let's start with what you are trying to install. Adobe Reader is free, so it won't be forcing you to buy anything. So
    - What are you trying to install (full name, please, Adobe make lots of things)
    - What system (e.g. Windows 7, Mac OS Lion, iPad...)
    - Where do you go (what web address) to start off?
    - Why were you "forced" to do this?

  • HT4528 getting popup need to review new terms and conditions for icloud on the iPhone 5s

    Getting a pop up when Iphone is activated that there are new icloud terms and conditions usually happens back to back and if on for a few minutes it pops back up.  Gives options to view terms or not now.  IF view now is selected it takes me to icloud settings but no way to view terms.  Need to figure out what is happening and how to clear from phone. Thanks in advance

    None of these things work for me, I'm so stuck!
    I updated to iOS7 this afternoon, before doing so I backed everything up and cleared off a bunch of photo's so I had space. Everything had been working fine.
    A few months ago I'd updated my apple ID to my new email address and it had worked fine. Now, my old email is my Apple ID and it won't let me rest it (my DOB is apparently wrong and there is no email address it's now connected to). My iTunes is connected to the correct account but the iCloud ID is still the wrong one.
    I've tried the 'find my friends' app and it gave me new T&C's but still, the old apple ID
    I've tried the restrictions, but that didn't work either
    I can't restore the phone until 'find my iPhone' is off, but I can't log in to do that
    IT'S LIKE A TERRIBLE CYCLE OF STUPIDNESS
    Can anyone suggest anything before I thrrow this stupid phone at the wall??

  • Files will not open? Says I need to agree to terms and conditions.

    I have downloaded Adobe Reader and the file says it is "finished" but I cannot open the files. I get a message that I must install Adobe, agree to terms and conditions and restart my computer.
    I have done this several times but get the same result. I am using a new Mac Book Pro.
    Acrobat Reader

    Hi 2181pine,
    Type Adobe Reader on 'Spotlight' and launch Reader. It will prompt the 'End User License Agreement'.
    Click on 'Accept'.
    After this it should work fine for you.
    Regards,
    Rave

  • HT4623 I updated my iphone 4S successfully. But now I get a message that says I need to accept the terms and conditions. When I select the Terms and Conditions, my phone is unable to locate them.

    I updated my iphone 4S successfully. But now I get a message that says I need to read and accept the Terms and Conditions. But when I select the Terms and Conditions, nothing appears but a message that says "cannot locate."

    Hi bondercin,
    Welcome to the Support Communities!
    The articles below may be able to help you with this issue.
    Click on the links to see more details and screenshots.
    Restart and / or reset your device
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    Check your settings for Safari -- enable cookies and turn off private browsing
    iPhone User Guide - Safari settings
    http://help.apple.com/iphone/7/#/iph3d7aa74dc
    Also, sign out of your iTunes Store account and sign back in:
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311?viewlocale=en_US
    This article provides additional troubleshooting steps for connecting to the iTunes Store:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Cheers,
    - Judy

  • Crystal Presentation Design 20011 and conditional formatting

    Does anyone know if conditional formatting is supportted. I have a some cells with conditional formatting..ie.. some of the cells turns colorblue when certain criteria is met..I'm using a listview to show the range of cells but it's not coloring the cells blue when showing the view. Do I need to use anothe component? or is there a workaround? I've tried grid and spreadsheet table as well with no luck..any ideas?

    I do not think it is supported. Xcelsius does not support Macros, if you are using VBA.
    Edited by: Jan Bednar on Sep 22, 2011 1:50 PM

  • IDisk and conditional formatting

    I've been using conditional formatting to add color to cells for specific events. It's great and allows me to assess data at a glance. Recently, I decided it would be nice to have this data available to me on my iPhone, through iDisk. However, when I copy the file over, open it up on the iPhone, no conditional formatting is apparent.
    Is this just a no-go?
    I realize I can do 1 of two things to fix it: 1) apply the color manually (not a valid choice, really) or 2) save it as a PDF, which retains the color.
    Why I would like to keep it in Numbers is because I really like the tabs for different pages at the top on the iPhone screen. Loading the file as a PDF it seems rather laggy, since it loads all the pages on the same screen.
    Thanks in advance.

    Hi,
    you may use guided navigation to drill to a custom request.
    In the request which has the time level prior to day in time hierarchy, click on 'add navigation' button and select the request which has the day level.
    Build a request with day and sales columns. Edit the formula for sales measure and put for example: case when day = 'monday' then null else sales end.
    Regards,
    Monica Bocchio

  • EVDRE and Conditional Formating

    Hello guys,
    Here is a strange one. We have built an EVDRE for 5 products over 12 months which expands to Column BS
    We find that if we exand it for 2 months the conditional formatting expands correctly but for 12 months the conditional formatting just not expand and just stays in the primary expansion cell. The conditional formatting is blank elsewhere.
    Any ideas?? Help much appreciated.
    We are on Version 7.0 SP4 for MS and using SQL 2008.
    Edited by: GFS on May 4, 2010 3:44 PM

    I don't know any issue regarding EVDRE + conditional formating for Excel 2007.
    Any way I suggets to open a ticket into support because they will do a search for similar problems.
    Usually these kind of issue are related to Excel not really to BPC.
    The Excel 2007 is treating the events into other order than Excel 2003.
    If you are using Custom Macro into your report I suggest to review these Macros.
    Kind Regards
    Sorin Radulescu

  • Need help with using occi and vc++ 2005 (express edition)

    Hi to all!
    I'm new here.
    I wan't to write a dll with connects over occi to oracle, but i don't know how!
    Did have anyone a good tutorial from beginning? Or a project for vc++ 2005?
    Thanks!
    Mike

    For building OCCI applications with VC++ 2005, you need to get the appropriate OCCI libraries from :-
    http://www.oracle.com/technology/tech/oci/occi/occidownloads.html
    OCCI samples, training materials and documentation is available from the OCCI homepage :-
    http://www.oracle.com/technology/tech/oci/occi/index.html
    Regards,
    Shankar

Maybe you are looking for