Formatting by date and price

Hi I'm having a problem formatting a spreadsheet.
My spreadsheet has 10 columns and two of these are renewal date and price. 
I need to format the spreadsheet so that any date before 30 September goes red; before 31 October - another colour; before 30 November - another colour and by 31 December - another colour. 
Additionally, I need the spreadsheet to organise from the highest price. 
Ideally it should end up that the earliest and highest price renewal should be at the top and the bottom should be the latest and lowest price (at the end of December). 
Please can someone help (in simple terms as possible) as to how to do this!
Many thanks,
H. 

Hi,
According to your description, we need to assign two different conditional formatting rules with column date and column price. Please see the below image:
===
Column Date Rule:
Format only cells that contain> Cell value less than 2014/9/1> Set format red
Format only cells that contain> Cell value between 2014/9/1 and 2014/10/1> Set format yellow
Create multiple rule based on your date.
===
Column Price Rule:
Format only top or bottom ranked values.
Regards,
George Zhao
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Format of date and numbers

    Hi,
    in Italy the format of date is DD/MM/YYYY e the formato of numbers is NNN,DD (DD means Decimal).
    I use Excel for IPAD but when I write for instance 28/03/2015 the field shows 03/28/2015, the same problem is for numbers where the comma and the dot are inverted.
    How do I change the format of date and numbers?
    Thank you in advance.
    Max

    The general format of the date is tied to the language...use US english, get US date formatting.
    You may want to poke around in excel's settings. I know the desktop version allows you to alter the date formatting, but I'm not sure if the iPad app has that. Look for 'cell formatting' in the settings and see if it's alterable.
    If not, you can try to make your template on a PC, then put that excel onto your iPad and see if it honors the cell formatting already in place.

  • Purchased Item Data and Price list

    Hi,
    What are all the tables involved in retriving Purchased Item Master Data and Price List
    What is the t-code ?
    I need to get this data based on vendor.
    Regards
    Uday Kiran

    Use tcode ME2L to fetch data based on Vendor.
    Common Table used in Purchasing are EKPO-PO Item details
    EKKO-PO Header details
    EKBE-PO history
    EKKN-PO account assignment details
    Tcode to check SAP table SE11 /  SE16
    Regards
    PK

  • MS Word Web Service Interface: bad format of date and currency fields

    Hi,
    I am using MS Word Web Service interface to create contract documents. However, my date and currency fields show in a strange format. Date is in"YYYY-MM-DD" format, while currencies always have "." as decimal separator (probably technical values). My user settings are "DD.MM.YYYY" for dates and "n.nnn,dd" for decimal numbers.
    My workaround is to create a Z structure for WS interface with char fields and then do conversion through CRM_WST_RT_BADI->OUTBOUND_PROCESSING method. This works, but requires a lot of custom development.
    Is there a way to "tell" the interface to use correct formats in MS Word without doing it all manually through custom fields?
    Thanks!
    KR,
    Igor

    Oh, indeed!
    We might be closer than you think - I live close to Croatian-Slovenian border so we might pop out for a drink! But we can discuss this out of forum... 
    Now work again:
    Is there any documentation on possible formatting keywords? I suppose it's possible to set up decimal places, custom date formats etc.
    Cheers,
    Igor

  • Expiration date and Price break date in blanket purchase agreement

    Hi,
    In Blanket purchase agreement i see expiration date and in price break i see the from date and to date, can some one tell me the difference between these two dates?
    Issue
    1.when i try to put an end date(expiration date) to one of the line i get this error message or when i try to cancel the po line by giving some reason it throws the same error.
    The error
    "You cannot cancel or finally close this agreement line because there are open purchase order lines referencing this document."
    Regards
    Sudharshan

    Hi Sudarshan,
    Expiration date under BPA is used to prevent ordering of the item after the date appearing in this expiration field. It will stop you to create new releases incase you are trying to create one after the expiry date of the BPA.
    In short, If the item on the agreement has expired but already exists on an open release, you can still use the release. However, the expired line item will not be used for sourcing, and any future releases you create will not allow using the expired item.
    Under Price Break, Effective from and to date indicates the validaity of Price break rule for a particular duration. This is restricted to Price break rule only.
    Hope this will help.
    Regards,
    S.P DASH

  • Format users date and repopulate

    Hi, I've been having a lot of trouble with what is probably a very easy solution. What I am trying to do is create a function which reads a passed in date and either alerts the user with an error message saying the format is wrong, or (preferably) reformats the date and replaces the original.
    ie;
    Textbox1 : user enters 10/11/2008
    Script: converts to dd/mmm/yyyy
    Textbox2 now reads 11/OCT/2008
    the other format I want to allow is mmm//yyyy (where a month is known but a specific day of the week is not)
    only requirement is to check for those 2 formats. I know Adobe allows for validation of a single date format, but unfortunately, I need 2.
    please help if you can. thanks

    To get some flexability in the validation and formating you definately need to use JavaScript.
    To check for three date formats, one correct formats and two for conversion, you'll need to first write Regular Expressions for all three. After this it's a matter of figuring out if the input matches any of these and then applying the appropiate action, either converting, complianing, or doing nothing. All of this can be done from the validate event.
    As an alternative, you could use the keystroke event to limit the kinds of input the user can type into the field in the first place.
    Here are some articles that are relavant to your task:
    http://www.acrobatusers.com/tech_corners/javascript_corner/tips/2006/date_time_part1/
    http://www.acrobatusers.com/tech_corners/javascript_corner/tips/2006/formatting_text_field s/
    http://www.acrobatusers.com/tutorials/2008/04/text_match_reg_exp/
    http://www.acrobatusers.com/tech_corners/javascript_corner/tips/2006/scripts_form_fields/
    You'll also find detailed tutorials on using the Validate and Keystroke events at www.pdfscripting.com
    Thom Parker
    The source for PDF Scripting Info
    www.pdfScripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    http://www.adobe.com/devnet/acrobat/

  • Converting zulu format to date and time format

    I want to convert zulu format to regular dateand time format. so for e.g I have this date and time in my table
    021731ZJUN06, I want to convert it to 2006-06-02 17:31:00
    I wrote this in sql server, but don't know how to do this in oracle
    ALTER function [dbo].[ZULUToDateTime](@initDate varchar(20))
    RETURNS datetime
    AS
    BEGIN
    DECLARE @NewDate datetime
    SET @NewDate = NULL
    IF @initDate <> 'false'
    BEGIN
         SET @NewDate=     CONVERT(datetime,LEFT(@initDate,2)+ ' ' + STUFF(right(@initDate,5),4,0,' ') + ' ' +STUFF(SUBSTRING(@initDate,3,4),3,0,':'),121)  
    END
    RETURN @NewDate
    END

    Like this?
    SQL> select to_date('021731ZJUN06', 'ddhh24mi"z"monrr')
      2  from dual;
    TO_DATE('021731ZJUN0
    02-jun-2006 17:31:00Gotta love Oracle's date formatting fuctions :-)
    The format above is my default session format, if you explicitly want the format you showed, you need an extra to_char like:
    SQL> select TO_CHAR(to_date('021731ZJUN06', 'ddhh24mi"z"monrr'), 'yyyy-mm-dd hh24:mi:ss')
      2  from dual;
    TO_CHAR(TO_DATE('021
    2006-06-02 17:31:00John
    Edited by: John Spencer on Nov 10, 2011 1:45 PM
    Added correct output format.

  • Release Date and Price

    Hello
    I came to know that in UK the BB Q10 price is almost equal to BB Z10. If it is the case then which one we should buy??
    Pre-Booking is started in UK. May I know when is going to start in India and What will be the Price?? Will it be equal to Z10??
    Thanks in Advance 
    Suneet

    Suneet, BlackBerry has not released nor announced that information yet.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Nokia N71 Release Date and Price???

    Hey guys sorry to bother you but do you no when the Nokia N71 its going to be released and at what price SIM Free?? also there are loads of people claiming to be selling them on ebay they are all fake so if you see one dont but it from there
    thanks

    hi nokia n71 is nt goin to come cheap sim free
    released in the shops in a couple of months

  • 500px + Creative cloud photo how to manage the changes of subscription (date and price)

    I received a proposal of 500 px to renew my subscription and in addition to get a subscription at good price for Adobe products
    Enjoy all the perks of our Awesome + Adobe account (originally discounted at $13.75 USD per month) for a whole lot less. That’s only $10.35 USD/month for an entire year of access to great tools that will take your work to the next level!
    They advise to ask ADOBE but mowhere I found an answer.
    I have right now a subscription for Photoshop CC and LR CC, what is understood in "Adobe account" in the 500px proposal?

    Case Closed

  • How do i format date and time in SSRS 2008

    Okay, so i am working with SSRS 2008. I am formatting the date and time. Right now the current out put is 1/13/2014 8:02:11 AM. I want the output to
    be 1/13/14 8:02 AM. What is the expression for this? 
    Thanks in advance

    There are 2 functions that can be used, Format and FormatDateTime.
    http://www.jackdonnell.com/?p=122
    "You will find a fortune, though it will not be the one you seek." -
    Blind Seer, O Brother Where Art Thou
    Please Mark posts as answers or helpful so that others may find the fortune they seek.

  • Formatting Date and Time in Smartforms.

    Hello,
    I'm a newbie and I'm working with smartforms.
    My requirement is to get the following format of date and time in a text within a template.
    'MMM DD HH:MM'
    Like : Jan 01 12:45
    I have tried SAPScript Commands like 'SET DATE MASK' but that doesn't appear to work.
    Do I have to use a Function Module?
    Please help out. A sample code will be appreciated!
    Regards & Thanks,
    Arun G Nair

    Hi,
    please see this code
    DATA: V_DATE1 TYPE STRING
    SELECT SINGLE LTX FROM T247
       INTO MONTH_NAME
       WHERE SPRAS = SY-LANGU
       AND MNR = SY-DATUM+4(2).
    CONCATENATE MONTH_NAME  SY-DATUM+6(2)  DATE1(4)
        INTO V_DATE1 SEPARATED BY SPACE.

  • Date and time formatting in excel spreadsheet

    Hi:
    When I try to pass the data from jsp to excel , the excel sheet can't publish the date and time in the pattern that I wanted. I used SimpleDateFormat to format the date and time when I passed the data from jsp.
    SimpleDateFormat formatter=new SimpleDateFormat ("MM/dd/yyyy HH:mm:ss a");
    Could anyone tell me a solution.
    Thanks.

    Can you describe your problem a bit more. How are you passing the data, what is the error being seen in excel

  • Function Modules for Data and Time

    Hi all,
              I need 2 function modules for date and time. when we pass current data(sy-datum) and current time (sy-uzeit) into function modules, shoud get date in <b>dd/mm/yyyy or dd.mm.yyyy</b> and time in<b> HH:MM:SS</b> formats.
    Thanks in advance

    Hi Ranjith,
    i think this will b usefull for you..
    SAP Bar Chart Function Modules and what they are used for
    Function module
    Used for
    BARC_GRAPHIC_PBO
    Starting bar chart at PBO time, using a graphic profile (parameter PROFILE)
    BARC_GRAPHIC_PAI
    Analyzing data returned by the graphic
    BARC_SET_TIME_AXIS
    Setting start and end of time axis
    BARC_SET_OPTIONS
    Setting options
    BARC_ADD_CHART
    Creating a chart
    BARC_SET_CHART_ATTRIB
    Setting chart attributes
    BARC_ADD_SECTION
    Creating a section on the time axis
    BARC_SET_SECTION_ATTRIB
    Setting section attributes
    BARC_ADD_RIBBON
    Adding a ribbon to the time axis
    BARC_SET_RIBBON_ATTRIB
    Setting attributes for ribbons in the chart
    BARC_ADD_GRID
    Adding a time grid
    BARC_SET_GRID_ATTRIB
    Setting grid attributes
    BARC_ADD_LAYER
    Adding a layer (graphic elements)
    BARC_SET_LAYER_ATTRIB
    Setting layer attributes
    BARC_ADD_LINE
    Adding a line
    BARC_ADD_CALENDAR
    Creating a calendar
    BARC_SET_CALENDAR_ATTRIB
    Setting attributes for a calendar
    BARC_ADD_TIME_PROFILE
    Creating time profiles
    BARC_SET_TIME_PROFILE_ATTRIB
    Setting attributes for time profile
    BARC_ADD_INTERVAL
    Adding a time interval
    BARC_SET_INTERVAL_ATTRIB
    Setting time interval attributes
    BARC_ADD_TIME_OBJECT
    Creating a time object
    BARC_CONVERT_DATE
    Creating a date string in bar chart format
    BARC_REVERT_DATE
    Converting a date string in bar chart format to date and time
    BARC_ADD_DATELINE
    Creating a date line
    BARC_SET_DATELINE_ATTRIB
    Setting dateline attributes
    BARC_GET_PROFILE_CONTENTS
    Obtaining profile contents for customizing a chart
    BARC_GET_COLUMN_WIDTH
    Selecting new column width
    BARC_SET_COLUMN_WIDTH
    Setting the column width
    BARC_GET_TEXTINDEX
    Obtaining the text index of a field
    BARC_SET_LABELS
    Positioning the chart display
    BARC_SET_COLUMN_ATTRIB
    Setting column attributes
    BARC_SET_ROW_ATTRIB
    Setting row attributes
    BARC_SET_ROW_HEIGHT
    Setting the line height
    BARC_SET_MAXCHARTS
    Setting the maximum number of charts sent
    <b>If its usefull reward points
    </b>

  • Pulling my hair out: Change format from date to number format?

    I was recently sent a formatted Excel spreadsheet in which to enter my own numbers.  The format is date and duration, but the last column is the total number of hours and minutes converted into decimals, e.g. 3hrs. 30mins. = 3.5 hours.
    It was going fine until last night when I tried to enter 5:73 as a number, not a duration, but Numbers keeps changing it to 6m 13s.  I've tried changing the format from Duration to Number but although the cell will say 0:00, when I enter the number 5:73 it automatically switches back.
    The weird thing is that it's only happening on about one-third of the cells.  I even cut-and-pasted a section of the spreadsheet that didn't have this problem, cleared the contents and then typed my info into the same lines and rows and it's still doing the same thing.
    How can I see the hidden formatting in Numbers cells to see if I can figure what needs to be changed?
    Thank you.

    Hi Jane,
    dragging on bottom right corner but all that does is increase the range, not the size of the actual cell itself.
    Hover the cursor over the right of a column (Column B in this example) until the cursor becomes a cross with arrows pointing East and West. Drag right to widen the column.
    Or use the Format Panel > Table > Row & Column Size
    (You may have to drag the panel up to see this)
    I really miss in Numbers is being able to edit cell contents in a formula bar.
    Here is the formula bar in Numbers 3.2 after clicking twice on a cell
    The formula bar is moveable. Hover over the left of the bar until the cursor changes to a 'hand' and you can drag it.
    Resize the formula bar by hovering over any edge and drag
    Tricky with a trackpad, easier with a mouse .
    Also, the cell contents appear at bottom left of the Numbers window
    If you prefer Numbers 2.3, I agree it is much more user-friendly version.
    Regards,
    Ian.

Maybe you are looking for