Color Change on Group

How have a report grouped by vendor id and the details suppressed. We want every other vendor id to have a gray background. How would we accomplish this? We assume conditional formating, but are having a tough time coming up with a formula. Any help will be appreciated.

I am sure there are easier ways, but, this seems to work.
I created a running total, {#Rtotal0}  the total is in the group section.
I created a formula, it is also in the group section.
I called the formula Test  The formula has  " " in it. (Two quotes with a space)
The running total, is counting the occurences of @TEST with no reset
THen you put this in the color section of the group.
if {#RTotal0} mod (2) = 1 then Color (120, 120, 120) else crnocolor
Since the total is counting the groups, and not the records, ever other group should be grey.
If this is not the correct order just make the color formula
if {#RTotal0} mod (2) = 0 then Color (120, 120, 120) else crnocolor

Similar Messages

  • Ical calendar colors changing birthday calendar color

    Okay, I've been using iCal for well perhaps ever ever since it started shipping in the OS. I'd like to be able to change the colors codes of calendars on an iPad 2 running the app. So far haven't found a place to do that. Suspecting it might be a mobileme thing. I've even tried that, nope no good.  Seems like the iCal app on the iPad pulls colors from somewhere as some match others don't. I looking for a consistent look for all calendars across different devices, i.e. Ipad/iPhone/Laptop desktop version of iCal.  Going to repost this same question on the iCal discussion group. Should I get a response I'll repost it here.
    Thanks,

    Mikael,
    I also used to sync to my Palm handheld. I used The Missing Sync. I still had the problem of colors changing. But, they just changed. The colors on my iPod touch calendar don't relate at all to the colors in iCal.
    Since it occasionally happened with my Palm, I don't mind having to adjust the calendars. What I don't like is that there is no way, on the iPod, to change the colors. And a few of the frequently-used calendars have ended up with the same color on my touch.
    -fred
    I expect that will come with time.

  • Ios7. color change of app/icon

    I am hoping someone can tell me how or if we can change the icon/app colors in the new ios7 on our devices.  I am not liking the bright white, nor the beige background for my grouped apps.  I can only find a invert color switch, but that makes my picture look like an xray.  Please advise.  Thx!

    When I changed my wallpaper, those colors changed as well. Play around with it a little.

  • Bug when importing Ppt slides with animation: color changes to foam green

    Hi everyone,
    I am using Captivate 7 and I am experiencing what seems like a bug when I try to import Powerpoint slides that have animation effects and then publish the video as HTML5.
    I am using Ppt 2007 and importing the slides as .pptx files using the Import> Ppt slides command in Captivate.
    An example of Ppt slide that I need to import is this: in the slide, there are two groups, created by grouping together several objects (lines, shapes etc). One group has a fade effect applied on it, while the other group has a diagonal down right movement applied to it.
    When I import the slide in Captivate, the following happens:
    If I do not select the High fidelity check box, then the Ppt slide is imported as static, and no effect is shown in the HTML5 video, although the effect is shown in the Captivate preview.
    If I select the High fidelity check box, then the Ppt slide is imported with the effect, and with the original Ppt colors, but as soon as I press F3 to play the slide, or F4 to play the whole project, or I publish the video in HTML5 output, all the original colors change to foam green for the fill in and black for the shape outlines. Furthermore, the text boxes are displayed with their box frame displayed:
    ORIGINAL PPT IMAGE:
    RESULT AFTER CAPTIVATE IMPORT:
    I have read in the forum several posts on this issue, eg colors being changed to foam green even with static Ppt slides, and I tried to apply the suggestions, but none seems to work.
    Any help will be appreciated.

    Hi there
    As Hyperlinks don't survive the import process, perhaps try removing the links and just applying the desired color in PPT before importing into Captivate?
    Cheers... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Excel 2007 cell color changes when copying to other docum. using clipboard

    Hi,
    There is excel 2007 document which is generated by SAP. I think it contains
    some VB macros and some grouping.
    The problem is that if I select something from that document, copy that and
    paste to another excel 2007 document - colors get inverted somehow - for
    example white cell becomes red cell (backgroud color I mean), other
    background colors changes as well.
    If I open this xlsx document using excel 2003 (it converts document using
    compatibility pack) the issue is gone - I can copy contents to other excel
    2003 document without losing any format info.
    The problem is that our users all use office 2007.
    What could couse this behaviour ?
    thanks in advance
    Vilius
    Edited by: Vilius Mockunas on May 25, 2009 8:04 AM

    dear friend,
    you would do:
    1. search SAP Notes;
    2. check out the updates/patches for your MS Office;
    3. replicate it on another computer/another sap user (make sure it is a local issue)
    good luck!

  • TABLE CONTROL LINES COLOR CHANGE

    <i>Hi Friens.,
    I need small help ie.,
    Let us assume we have table control like this.,
    col1 |  col2  |  group |
    a1   |   b1   |  1
    a2   |   b2   |  1
    a3   |   b3   |  2
    a4   |   b4   |  2
    a5   |   b5   |  3
    a6   |   b6   |  3
    1) User need differentiation between groups to look and feel.,thats why I want to change the Line colors based on Group.,
    2) I am getting this one .,but I made case on Sy-stepl.,  while scrolling it is not showing correct .,
    3) Is there any good way to do this., like in ME21   CONDITIONS TAB at Item level</i>
    If any body have Idea., share with me.,
    <b>Thanks.,</b>
    <i><b>Surendher Reddy.Baddam</b></i>

    Re: TABLE CONTROL LINES COLOR CHANGE
    Posted: Nov 5, 2004 6:47 AM        Reply      E-mail this post 
    PBO >>>like thise.,
    LOOP AT itab WITH CONTROL tc4_400 CURSOR tc4_400-current_line.
    MODULE check_rej_hld_400.
    MODULE radio_checkbox_400.
    ENDLOOP.
    >>>
    MODULE radio_checkbox_400.
    DATA : l_stf TYPE i.
    DATA : l_hyd TYPE i,l_knr TYPE i.
    l_hyd = 1.
    LOOP AT SCREEN.
    IF screen-name = 'ITAB-BATCHNO'.
    IF itab-group = l_hyd. " this is group
    screen-intensified = 1.
    MODIFY SCREEN.
    ELSEIF
    screen-intensified = 0.
    MODIFY SCREEN.
    ENDIF.
    ENDIF.
    ENDLOOP.
    ADD 2 TO l_hyd
    ENDMODULE.
    I made logic like this.,
    Thanks.,
    Surendher Reddy.Baddam

  • ICal Calendar Colors Changing On Their Own; iCloud Connection

    AGGRAVATING PROBLEM:
    Many in this forum have written recently about a problem ongoing for people with multiple iCal calendars where iCal calendar colors change "automatically" when you haven't selected those colors, or even "change back" before your eyes to some color your DIDN'T select after you select a new one.  If you log into iCloud on the Web and try to change the color of certain calendars, they refuse to change.  Try as you might, the color you want for your calendar won't "stick" and it is forced to be the wrong color on all your devices.  In some cases, even the names of some of the calendars cannot be changed.  On other calendars in your list, the colors and names will change fine. 
    Related symptoms:  Calendars you have deleted "come back."   Or, calendars you did not create yourself show up in your calendars list, such as "Calendar" or "Home" or even "Untitled."  Note that the problem seems to be most prevalent with calendars with names "Home," "Work," OR either of these words in the NAME of the calendar.  For instance, "Bob's Work" might get snagged (it can't be deleted without coming back or its color is stuck and "comes back"). 
    I spent a long time on the phone with a helpful Apple senior advanced specialist on this problem today.  We conducted a very large number of "experiments". Our family has two iPads, 2 iPhones, and 2 iMacs, so it was easy to rule things in or out.  I will present some information that may help.
    SOME OF WHAT APPEARS TO BE GOING ON:
    First, Apple has not resolved this.  But the problem appears to be related to iCloud, and NOT to individual devices.  After de-linking all of my individual devices from iCloud, I could change any of the colors or names at will on any given device, create new calendars and then change their colors to whatever I wish, delete calendars, change names...no problem.  However, after re-linking calendars to iCloud, all the problems mentioned above returned.  The chances that my iMacs, iPhones, and iPads are all causing the problem independently is very low. They also have slightly different OS versions on them, so it is not likely an a particular device OS, though that could be indirectly related.  Also, the colors "change back" within about the same time (usually a few seconds to up to 30 seconds) that it takes to do a "refresh" (i.e. an update) to the iCloud servers.  This when iCloud is turned on, and the absence of it when iCloud is turned off (for calendars), strongly suggests that it is the iCloud server and its interaction with your devices that the fundamental cause of the problem.
    Apple has said that they are aware of this problem and their engineers are working on a fix.  Historically, this can mean just a few days, or it could be a few months, years, or "whenever."  They don't give estimates of when it will be fixed.  Exactly WHY this is happening is unclear, but my guess is that it is a modification to the iCloud server code that Apple implemented without testing it thoroughly enough to discover this problem.  Apple does not admit to that, of course and I don't know if I am correct.
    A WORKAROUND SOLUTION THAT WORKED FOR ME:
    Please note this is a workaround and not a full fix.  Apple needs to run a patch on their iCloud server code.  Until then, I did the following which seems to have worked for me for now.  Read the whole list before deciding whether to proceed.  I don't guarantee it will work in all situations.
    Note...I found I was stuck for now with the color of ONE of my calendars.  If you are like me, you want to keep that one and work around it....
    Backup first... Make sure that your iCloud copy of your calendar data has the calendar event information you want to save - even if the color is wrong.  Log in at www.icloud.com and do a refresh to sync to the Cloud.  Check over your calendars online to make sure the event data appears to be there for all of your calendars (even if their color or name is not what you want).
    Steps:
    1.     Go to every device that you have linked to iCloud separately. Go into Settings, iCloud, and then uncheck the "Calendars" option.  This delinks your calendars for that device to iCloud.  As you do this on each device, when prompted, select "Keep On My" ..iPAD...iPhone...iMac... etc.  This will preserve the calendar information on the device so it won't be deleted.  I think this is safer, but you can click on "Delete" if you want, too.  Note - if one of your devices is an iMac, with OSX Lion and before, you may be forced (I was) to delete the iCloud calendars from the iMac.  So again, make sure they are backed up to the Cloud first (or somewhere else).
    3.     With the iCloud Calendars Option on all your devices still turned off, go to the WEB and log into iCloud.com.  You need to figure our which calendar iCloud won't let you change the color for.  You probably already know.  On iCloud.com, click on "Calendars," then click open your calendar list and select "EDIT" at the bottom of the dialog box.  One at a time, click on the color dots next to each calendar name and try to change the color (you can put any back after the test if you want). You will probably see a certain one that just goes right back to what you don't want.  This is the one for which the color is stuck, but you may be able to change the name of it now that your devices are unlinked from iCloud.
    4.     Still in iCloud.com, change the names and colors of any of the other calendars you wish to change.  Delete any empty calendars that mysteriously appeared without your wanting them.  Take note of all the calendars, names, and colors that are on the final list of calendars.
    5.     On EVERY device, BEFORE turning iCloud back on on ANY of them: Change the colors and/or names of calendars, delete calendars, etc. so that the calendar names and colors on the device are exactly the same as what you left in iCloud.com in the last step.
    6.   One at a time on each device, go back to Settings and then "iCloud" and check again the box for "Calendars."  You will be asked whether you want to "MERGE" your data with iCloud.  I selected MERGE to ensure I didn't lose anything.  Link each device again into iCloud one at a time.
    7.  When each device is back, go back to iCloud on the Web, or go into iCAL on one of your devices.  Set to view ALL calendars.  Look for duplicates of some of your events.  I found quite several as an artifact of "merging", but in my case it only took me about 5 minutes to go through quickly and delete the duplicates.  It deleted the duplicates on all of the devices at once, so I only needed to delete dups on one device.  I did not find that I lost any events as long as I kept one valid copy.
    Again, no guarantees...hope this works for others.  Good luck.

    I'm getting the same thing and it's really bugging me! Keeps changing colour to one I do not want and I have tried everything to get it to stay the colour I have chosen!!

  • Report row color change based on condition

    I have follow this forum steps Re: Color Row In Report
    Column Template 1
    <td #ALIGNMENT# class="t1data" style="background-color:#ADD8E6;">#COLUMN_VALUE#</td>
    PL/SQL expression condition
    '#2#' = 'BOOKED'
    Column Template 2
    <td #ALIGNMENT# class="t2data" style="background-color:#FFE87C;">#COLUMN_VALUE#</td>
    PL/SQL expression condition
    '#2#' = 'ENTERED'
    http://img29.imageshack.us/img29/2792/apexcolor.png
    This does color change but for some rows the colors are highlighted wrong and when i mouse over the rows , it changes to wrong color.

    Hi,
    t1Data and t2Data sound like standard theme css class names.
    In my example, the colouring is done by the style attribute on the TD tag. For "normal" rows:
    &lt;td #ALIGNMENT# headers="#COLUMN_HEADER#" class="t18data"&gt;#COLUMN_VALUE#&lt;/td&gt;for highlighted rows:
    &lt;td #ALIGNMENT# headers="#COLUMN_HEADER#" class="t18data" style="background-color:red;"&gt;#COLUMN_VALUE#&lt;/td&gt;Have you defined "t1Data" and "t2Data" in STYLE tags on your page?
    Andy

  • Why have colors change in new update?  And won't allow me to permanently change back - as they revert on their own?

    My iCal calendar colors changed by themself.  I have gone to "edit" and "get info" and have changed the colors back.  Within minutes, they change back to the wrong color.  It has now made these same changes on my iPhone 5 and iPad mini.  What's going on?  How do I permanently change these colors?

    Here are two screen shots to show you what I am seeing.  The first screen shot shows it allowing me to select (highlighted in blue) my admin user (which is what I am locced in as).  The second screen shot shows it allowing me to select the "Guest" user (highlighted in blue).  However when I click on the user "Orion" nothing happens.  It will not change to highlight that user.

  • Colors changing on my calendar

    What is Apple doing about supporting its clients with information on fixing the problem of colors changing on iCal?
    Is this even on their radar?

    This is actually not about the colors changing.  The colors change but it's because the appointments are being assigned randomly (it seems) to another calender like, Home, Work, Birthday.  If you uncheck the calender it will cause the events to disappear.  Check the calender again and the events reappear.
    I don't know how the other calenders got turned on and how they linked to only some events.  If you click on Calender in the upper right you'll see what is checked.  try unchecking and see if your appointments disappear.  So for Apple, please correct this issue.

  • Outlook 2010 Calendar Category Colors Changing

    We have a user who is using Oulook 2010. He assings colors to calendar items he creates. When someone sends him a calendar appointment, he assigns it a color as well. Anywhere from immediately to about 5 minutes, the color changes on its own to a lighter
    version of the assigned color. For example, he assigns an appointment to red and it's changed to the lighter red color.
    His colors do not change when he creates appointments for himself. The colors do change when someone else sends him a calendar invite, from both inside and outside the organization.

    Hi,
    I have a few questions for you regarding your issue:
    1. Can you reproduce this issue with all of your users or just this one user?
    2. Does this happen with all colors (for example does blue change to light blue and so on)?
    3. When the color changes does the category change also?
    I look forward to your response.
    Regards,
    HARVEYY - MSFT

  • Does anyone know what to do about iCal colors changing.

    Does anyone know what to do about iCal colors changing.   Ever since ios7 came out I have many problems.  I kind of feel like Apple has become Microsoft at twice the price??  Anyway, today all my calendars (iPhone, iPad, iCloud and on my Mac) all changed colors from the customer colors I had set.  I have about 5 calendars.
    I was able to change them back on my Mac, my iphone and my ipad, but not in iCloud.   Once each of the ones I changed updates / syncs it reverts to the incorrect colors again.  I have tested back and forth, and it is definetly coming out of the iCloud.com.  The web site will not let me chance colors, so once it updates / sync, all my other devices and calendars sync to the purple in iCloud.
    I could go on and on about my frustrations with the apparent lack to testing, and the irony around Microsoft and their "bugs".  It is more important that I find a cure, as this is really annoying.
    Has anyone else seen this today

    Don't spend a lot of time trying to change it. It's an iCloud problem that's happened before, and when it happened in August it went back to the correct colors in a few days. Just be careful when you add new items to the calendar to use the right calendar (even if the color is wrong), otherwise you'll have things out of synch when the correct colors come back.

  • HT201471 I updated my iPad 2 (model A1395) to IOS 8 and all the colors changed and the photos are like negatives.  why? and how do I fix it?

    I updated my iPad 2 (model A1395) to IOS 8 and all the colors changed and the photos are like negatives.  why? and how do I fix it?

    Looks like someone changed setting in iOS8.
    Change this setting.
    Settings -> General -> Accessibility -> Grayscale or Invert Colors

  • Is there a fuction call "on change of group" in CR2008?

    i want to summarize a field of the first record in each group, and than display the result in the report header.
    using "running total field" can summarize it but only calculated the first record if placing the result in the report header.
    i want to make it with "Formula Fields", is there a fuction call "on change of group" in Formula Fields?
    many thanks!

    Check out InRepeatedGroupHeader and see if it will help.

  • Does anyone has a problem with the screen of the new ipad? (there's a part of the screen which the color in it is "very" bright) and when I move the aluminium part of the smart cover when it's attached to the ipad the colors change!! Help!!!

    Does anyone has a problem with the screen of the new ipad? (there's a part of the screen which the color in it is "very" bright) and when I move the aluminium part of the smart cover when it's attached to the ipad the colors change!! Help!!!

    I'd take it into my local APple store and have them look at it. There may be something wrong inside your device.

Maybe you are looking for

  • Unable to assign the user in user group through SQ03

    Hi All, When I tried to assign a  user to one user group from SQ03 the tick mark is disables can't assign the user. This is happening only to one of the employee only. Others i can mark tick. Please advice. Imran

  • A Free Video Converter For Converting AVIs To Mov

    i just got a macbook and im having trouble playing avis in frontrow and i was wondering what converter/codec should i download

  • Vendor details for Shopping Cart Numbers.

    Hello All, I have shopping cart numbers(Object_ID). I want to know the details of vendors for corresonding SC numbers. Please provide me the details.

  • Enabling RAID on primary drive

    I've installed 2 1TB drives as a secondary storage array within my MacPro. Now, I'd like to turn on mirroring for the primary (boot) drive. So far, it seems like I will have to establish a Mirror between two drives and then clone my primary drive bac

  • Command line login to ZEN agent

    We use clientless Win XP machines connecting to ZENWorks via the middle tier server. I have installed the ZEN agent with passive mode. However, is there a way that when I log on to Windows Active Directory, in the background I can log on to the Middl