Advice on getting from previous years week

Hello

Not sure if this is the right place to ask this, but here goes...

I need to run that two queries to extract data on sales of selection.

The first will come out sales for the previous week, for example (Monday, May 16, 2011 - Sunday 22 May 2011). I want then to the second out sales for the same week last year for example (Monday, May 17, 2010 - Sunday, May 23, 2010).

I'll have the Date and to which has been entered by the user of my first query, how do I training Oracle (11.2.0.1.0) the same week of the previous year?

Thank you and best regards,

Andrew

Published by: user9533852 on May 23, 2011 15:03

Try this,

For this week

SELECT *
  FROM sales_table
 WHERE TO_CHAR (sales_date, 'YYYYIW') = TO_CHAR (SYSDATE, 'YYYYIW');

For the same week last year.


SELECT *
  FROM sales_table
 WHERE TO_CHAR (sales_date, 'YYYYIW') =
          TO_CHAR (ADD_MONTHS (SYSDATE, -12), 'YYYY') || TO_CHAR (SYSDATE, 'IW');

Tags: Database

Similar Questions

  • How to get the month previous year?

    Hello

    I have to get the previous year three-months of the effective date, but I have a problem since the beginning of the year and it's because I set the incorrect query.

    I mean:

    I wrote this query

    SELECT TO_CHAR(SYSDATE,'YYYYMM')-1, 2-TO_CHAR(SYSDATE,'YYYYMM'), TO_CHAR(SYSDATE,'YYYYMM')-3

    FROM DUAL;

    in order to get (on mars):

    201502, 201501, 201412

    but unfortunately, I get:

    201502, 201501, 201500

    Can you help me?

    Thanks in advance!

    Hello

    Here's one way:

    SELECT TO_CHAR (ADD_MONTHS (SYSDATE-1), "YYYYMM") AS the m1

    , TO_CHAR (ADD_MONTHS (SYSDATE-2), "YYYYMM") AS m2

    , TO_CHAR (ADD_MONTHS (SYSDATE,-3), "YYYYMM") M3

    DOUBLE;

  • I'm recently back from Berlin where I accidentally left my iPhone 6. My friend tried to send it to me; However, he was returned by customs. Need advice on getting my iPhone 6 sent from Berlin to California.

    I'm recently back from Berlin where I accidentally left my iPhone 6. My friend tried to send it to me; However, he was returned by customs. Need advice on getting my iPhone of Berlin has been sent to California.

    You'll have to talk to the German customs and find out what their requirements are to send an iPhone.

  • How to get the fiscal year previous last day?

    I created a line of dashboard with a column of the calendar date. Duty of the user is to display the previous year sales last day i.e. 31 March of the year for the date played.

    How is it achievable? Please answer anyone who implemented logic.

    Fiscal year starts from 01 Apr.

    Dear Philippe,

    Sometimes we are not able to provide a complete solution for you, but we can guide you because we are a busy lot in our own tasks... here, I worked a formula for you...

    -case when Date ' @{PV} {2014-04-04}<=TIMESTAMPADD(SQL_TSI_MONTH, 3,timestampadd(="" sql_tsi_day="" ,="" extract(="" day_of_year="" from="" pv)="" *="" -(1)="" ,="" pv))="">

    TIMESTAMPADD (SQL_TSI_MONTH-9, TIMESTAMPADD (SQL_TSI_DAY, EXTRACT (DAY_OF_YEAR pv) *-(1), pv)) else

    TIMESTAMPADD (SQL_TSI_MONTH, 3, TIMESTAMPADD (SQL_TSI_DAY, EXTRACT (DAY_OF_YEAR pv) *-(1), pv)) end

    I could not test this by obiee. But have a try and let us know if no door.

    Thank you

    AJ

  • I try to install creative suite 6 a disc that I bought a few years ago. I have an educational version and I have the serial number that was sent to me by e-mail from Adobe last week. My serial number is long of 20 numbers, but there are a 6 boxes which is

    I try to install creative suite 6 a disc that I bought a few years ago. I have an educational version and I have the serial number that was sent to me by e-mail from Adobe last week. My serial number is long of 20 numbers, but there are 6 boxes that appear to require 24 digits and told me that the number is incorrect. What should I do?

    Using redemption code

    http://helpx.Adobe.com/x-productkb/global/redemption-code-help.html

  • Get the date of the previous year

    Hi all

    How can I recover date from the previous year, based on today's date, if I have a data type 'date '.

    Marwim wrote:
    Hello BluShadow,

    You should know better ;-)

    select date '2004-02-29' - interval '1' year from dual;
    
    ORA-01839: date not valid for month specified
    

    Well, today he works.

    Concerning
    Marcus

    Edited by: Marwim the 13.10.2011 17:06

    Ah, good point. Really, it's oracle who should know better. It should do the same thing as:

    select add_months(date '2004-02-29',-12) from dual;
    
  • SQL to get % increase in the amount of the previous year

    Version 11g

    Hello

    I have a requirement where I need to calculate the percent increase of wages and costs compared to the previous year,

    If the output should be something like
    Year        Salary       %increase                Rent         %Increase
    
    2012       1000          1000%                   100                     1000%
    2011       100             100%                    10                      100%(depending on last year value)
    2010    . . . 
    .
    .
    .
    The inclusion of scripts are
    create table sal
    (exp_type   varchar2(100),
    exp_date  date,
    exp_amt number);
    
    
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-JUN-11','DD-MON-RR'),685);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-JUN-11','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-JUL-11','DD-MON-RR'),685);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-JUL-11','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-AUG-11','DD-MON-RR'),687);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-AUG-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-SEP-11','DD-MON-RR'),687);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-SEP-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-OCT-11','DD-MON-RR'),750);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-OCT-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-NOV-11','DD-MON-RR'),750);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-NOV-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-DEC-11','DD-MON-RR'),755);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-DEC-11','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-JAN-12','DD-MON-RR'),755);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-JAN-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-FEB-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-FEB-12','DD-MON-RR'),750);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-MAR-12','DD-MON-RR'),766);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-MAR-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-JUN-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-JUN-12','DD-MON-RR'),740);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('02-JUL-12','DD-MON-RR'),735);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('02-JUL-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-AUG-12','DD-MON-RR'),739);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-AUG-12','DD-MON-RR'),93.4);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('02-SEP-12','DD-MON-RR'),740);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('02-SEP-12','DD-MON-RR'),93.4);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-APR-12','DD-MON-RR'),570);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-APR-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-MAY-12','DD-MON-RR'),740);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-MAY-12','DD-MON-RR'),89.04);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-NOV-12','DD-MON-RR'),845);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-NOV-12','DD-MON-RR'),93.4);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-OCT-12','DD-MON-RR'),900);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-OCT-12','DD-MON-RR'),93.4);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-FEB-10','DD-MON-RR'),508);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-FEB-10','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('03-MAR-10','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('03-MAR-10','DD-MON-RR'),500);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-APR-10','DD-MON-RR'),509);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('04-APR-10','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Rent',to_date('01-MAY-10','DD-MON-RR'),84.89);
    Insert into SAL (EXP_TYPE,EXP_DATE,"EXP_AMT") values ('Salary',to_date('01-MAY-10','DD-MON-RR'),514.46);
    Any suggestions on how we can calculate the increase in % at run time?


    Thank you
    Ryan

    Hello

    ryansun wrote:
    Thank you Al, Frank!

    I am struggling with the math a bit part. Or maybe % increase is not the correct term. So what I want is the increase in rent and wages in terms of % over the previous year. Thus, for example the output below.

    The salary in 2012 is 8280
    The salary in 2011 is 4999

    so 8280-4999 = 3281

    3281 is 65.6% of 4999.

    The increase last year was 65.6% compared to the last years value while the output of two sqls 165,6%

    Right, Al and I assumed you wanted the percent of last year, not the percentages of increase... Subtract 100 if you want the percentage increase.

  • Format of day, time of year, week, in figures

    I would subtract one date from another. Number return weeks and days and I'd years, weeks and days. Formatting will not allow adjustment of the year. Any suggestions?

    Hi max,.

    I suspect that the unit is not available for the same reason 'month' isn't available, unlike the week, day, hour, minute, and second, it is not a stable unit. Conversion from weeks to days gives the same result for weeks in February 2004, as it does for weeks in July 1918, Conversion from months to days may require multiplying by 28, 29, 30 or 31 for one month, or a value with a fractional part for a period of more than a month long conversion (although this period was an integer when measured (or counted) in months.)

    You can get an approximate value in doing some math.

    In the example, the end result is a text string. Formula below.

    C2: A - B

    D2: QUOTIENT (DUR2DAYS (C2), 365.25) & "is" & QUOTIENT (MOD (DUR2DAYS (C2), 365.25), 7) & "w" & MOD (DUR2DAYS (C2), 7) & "d" "" ""

    As mentioned, this is an approximation, and it is a text string, OK for display, but not useful (or usable) in all other calculations. A 'curiosity', more than anything.

    Kind regards

    Barry

  • How can I get a previous version of Firefox. 17 Firefox does not work with online banking

    How can I get a previous version of Firefox. 17 Firefox does not work with banking online edit

    Similarly I cannot now (with v 17) start a download from a Web site to Quicken. At least it seems with four different financial institutions, I've tried. Each of them worked before version 17. I am now on 17.0.1 so that does not solve the problem.

  • How to complete the data or details of the only this year and the previous year for the given RATNG?

    Hi all

    I created a form with 5 blocks (namely ENQACMHDR, ENQACMDTL, ENQACEHDR, ENQACEDTL, ENQACSPEC), where I have 8 push buttons (namely ENTER_QUERY, EXEC_QUERY, CLEAR, FIRST, NEXT, PREVIOUS, LAST, and EXIT).

    This form is created just for display purposes only. So after that I ran, all blocks have been blocked against insert and update.

    I have question on 2 fields 'ENQNO' and "RATNG" (both belong to the ENQACMDTL block).

    When I click on "EXEC_QUERY" directly, all data for all years fills.

    But the user wanted the data to be populated only this year and the previous year.

    Yes, on ' Clause WHERE' of the property_palette of the 'ENQACMDTL' block , I put in the following condition:

    SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (ADD_MONTHS (SYSDATE,-12), 'YYYY') OR SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (SYSDATE, 'YYYY')

    PROPERTY PALETTE (ENQACMDTL block)
    WHERE ClauseSUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (ADD_MONTHS (SYSDATE,-12), 'YYYY') OR SUBSTR (ENQACMDTL. ENQNO, 1, 4) = TO_CHAR (SYSDATE, 'YYYY')


    Data only this year and the year before are now filled. Its ok with the field of "ENQNO".

    The problem is when I have queries on the field "RATNG. 'RATNG' is a Text_item with number of displayed items = 5. (5 lines)


    Here are the 2 columns in a Table (name = ENQACMDTL) in the database.


    ENQNO RATNG
    2013900054500KC2
    2013900047800KC4
    2013520018750KC6
    ...............
    20129000371000KC2
    2012520109500KC2
    2012140019750KC6
    ..................
    2011540036500KC2
    20111000301000KC2
    ..................
    .................
    200610000790KD8
    2006750014750KC6
    2006900072500KC2

    The first 4 issues of "ENQNO" represents the year. There is more than a lakhs of records.

    So, when I have queries on the field "RATNG."

    Example: for RATNG = 500KC2;

    I click on ENTER_QUERY, the field of "RATNG", I put in the 500KC2 of the value and click on EXEC_QUERY; Details regarding the 500KC2 is displayed as well as all the other junk RATNG as 750KC6, 1000KC2 (which belongs to the ENQNO of the current year and previous year) also gets displayed.

    I want details of only RATNG (500KC2) to display, but only for the current year and the previous year, it is 2013900054, 2012520109 (ENQNO).

    Other than 500KC2 RATNG, no other RATNG must be displayed.

    500KC2 = RATNG is also present for ENQNO = 2011540036, 2006900072. But I don't want them to view.

    I want only the data or details of the current year and the previous year to be filled or displayed for the given RATNG.

    Can you help me or tell me what I do for this?

    Hope I'm clear with my question!

    If my question is not clear, let me know please.

    Thank you.

    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production

    Oracle forms 6i.

    1. check null values in the enqacmdtl.enqno, if so treat them properly.

    2. check the result of select to_char (add_months (sysdate,-12), 'YYYY') prev_year curr_year of double to_char(sysdate,'YYYY')

    3. change the place where clause "year" in the value of numAriques.

    where to_number (substr (enqacmdtl.enqno, 1, 4)) > = to_number (to_char (add_months (sysdate,-12), 'YYYY'))

    Then let me know the result.

  • With the help of SQL, need to display the previous year, current year and the year next to single variable

    Hi all

    We have an obligation to state the previous year, current year and values of the year next as a LOV in the ADF page.

    This is the query that retrieves the previous year, current year and next year. But the result of this query displays values in 3 columns:

    Select (Extract(year from sysdate)-1), extract (year sysdate), (extract (year sysdate) + 1) twice;

    Output:

    2012 2013 2014


    But I want to display them in a single with 3 rows as column:

    2012

    2013

    2014


    Please your ideas.

    or in the same way

    SELECT EXTRACT (YEAR FROM ADD_MONTHS (SYSDATE, 12 *(LEVEL-2)))

    OF the double

    connect by level<>

  • Find the stock quantity of the previous year with another way...

    Hello
    I have a table with the following structure:
    create table stock_qties_items
    (subinv varchar2(10),item_code varchar2(10),period_name varchar2(5), qty_a number(5,2), qty_b number(5,2));
    alter table stock_qties_items
    add constraint stock_qties_items_pk primary key(subinv,item_code,period_name);
    and some data...
    insert into stock_qties_items
    values('01','410010010','01-08',10.50,0);
    insert into stock_qties_items
    values('01','410010010','02-08',19.30,10.35);
    insert into stock_qties_items
    values('01','410010010','03-08',3,0);
    insert into stock_qties_items
    values('02','410010010','03-08',8.54,1.90);
    insert into stock_qties_items
    values('03','410010010','03-08',120.45,1.25);
    insert into stock_qties_items
    values('03','410010010','04-08',502.10,6.50);
    insert into stock_qties_items
    values('03','410010010','05-08',5.05,6.20);
    insert into stock_qties_items
    values('03','410010010','08-08',19.35,65.90);
    insert into stock_qties_items
    values('02','410010010','10-08',40.85,5.20);
    insert into stock_qties_items
    values('03','410010010','12-08',75.20,90.15);
    insert into stock_qties_items
    values('02','410010020','12-08',60.55,0.85);
    insert into stock_qties_items
    values('01','410010020','07-08',100.90,10.05);
    insert into stock_qties_items
    values('01','410010010','01-09',8.95,0.05);
    insert into stock_qties_items
    values('02','410010010','01-09',88.95,100.05);
    insert into stock_qties_items
    values('03','410010020','01-09',91.05,0.05);
    insert into stock_qties_items
    values('04','410010020','01-09',11.75,10.05);
    insert into stock_qties_items
    values('04','410010010','03-09',1.75,110.40);
    insert into stock_qties_items
    values('04','410010010','05-09',0.75,10.40);
    insert into stock_qties_items
    values('04','410010025','03-09',1.75,90.00);
    insert into stock_qties_items
    values('04','410010025','07-09',51.75,190.00);
    insert into stock_qties_items
    values('04','410010010','09-09',62.15,10.05);
    insert into stock_qties_items
    values('04','410010010','10-09',39.15,0);
    The goal is to find the stock for the current year and previous year. I have accomplished with the following...
    select period_year,
               item_code,
               sqi1 stock_prev_year,
               sum(stock_curr_year) stock_curr_year
        from
        (
        select  to_char(to_date(substr(period_name,4,2),'RRRR'),'RRRR') period_year,
             item_code,
          (select sum(qty_a+qty_b)
                  from stock_qties_items sq
                  where sq.item_code=sqi.item_code
                 and to_char(to_date(to_number(substr(sqi.period_name,4,2)-1),'RRRR'),'RRRR')=
                        to_char(to_date(substr(sq.period_name,4,2),'RRRR'),'RRRR')
             ) sqi1,
             qty_a+qty_b stock_curr_year
         from stock_qties_items sqi
         )
         group by period_year,
               item_code,
               sqi1
    which generates the following output...
    PERIOD_YEAR ITEM_CODE  STOCK_PREV_YEAR STOCK_CURR_YEAR
    ----------- ---------- --------------- ---------------
    2008        410010020                           172,35
    2009        410010010           991,79          432,65
    2008        410010010                           991,79
    2009        410010025                            333,5
    2009        410010020           172,35           112,9
    Y at - it another way to achieve the same result, given that this table has a few million records and in this request a few other tables parameter should be added...?

    Note: I use Db 10 g v.2
    Thank you
    SIM

    Using the LAG function:

    SQL> with t as (
      2  select to_char(to_date(substr(period_name,4,2),'RRRR'),'RRRR') period_year,
      3  ITEM_CODE, sum(qty_a+qty_b) STOCK
      4  from stock_qties_items
      5  group by to_char(to_date(substr(period_name,4,2),'RRRR'),'RRRR'), ITEM_CODE
      6  )
      7  select period_year, ITEM_CODE,
      8  lag(stock) over (partition by ITEM_CODE order by period_year) stock_prev_year,
      9  stock stock_curr_year
     10  from t
     11  order by item_code, period_year;
    
    PERI ITEM_CODE  STOCK_PREV_YEAR STOCK_CURR_YEAR
    ---- ---------- --------------- ---------------
    2008 410010010                           991,79
    2009 410010010           991,79          432,65
    2008 410010020                           172,35
    2009 410010020           172,35           112,9
    2009 410010025                            333,5
    

    Max
    [My Italian oracle Blog | http://oracleitalia.wordpress.com/2010/01/30/compilazione-condizionale-in-plsql/]

  • year-week calculation

    Hello
    I want to create a table like this


    DAY OF THE WEEK OF THE YEAR

    2007 W1 JANUARY 3, 2007
    W2 2007 JANUARY 10, 2007
    : : :
    : : :
    : : :

    Wn 2010 December 29, 2010

    I want the data from 2007 to 2010 like this and week should start as w1 for each year
    my departure date is January 3, 2007

    Like this?

    SQL> WITH row_gen AS (
      2     SELECT rownum rn FROM dual
      3     CONNECT BY LEVEL <= 209)
      4  SELECT TO_CHAR(dt, 'YYYY') year, 'W'||TO_CHAR(dt, 'IW') week,
      5         dt thedate
      6  FROM (SELECT TO_DATE('27-Dec-2006', 'dd-mon-yyyy') + (rn * 7) dt
      7        FROM row_gen);
    
    YEAR WEE THEDATE
    ---- --- -----------
    2007 W01 03-JAN-2007
    2007 W02 10-JAN-2007
    2007 W03 17-JAN-2007
    2007 W04 24-JAN-2007
    . . .
    2010 W49 08-DEC-2010
    2010 W50 15-DEC-2010
    2010 W51 22-DEC-2010
    2010 W52 29-DEC-2010
    

    John

  • an alphabet by typing in a cell gives drop down suggestions from previous hits on the same column. But how the drop down to choose the suggestions of the other columns and other sheets.

    an alphabet by typing in a cell gives drop down suggestions from previous hits on the same column. But how the drop down to choose the suggestions of the other columns and other sheets.

    Hi mdsavol,

    Your observations are accurate. The 'suggestions' are previous entries in the same column that correspond to what has been entered so far in the active cell. The only direct user control is to activate the function turn on or off in numbers preferences > general.

    There are other ways to include or exclude items of suggestions:

    • To remove typos in the suggestions list, the user must correct the typos in the cell above the active cell. If they are more in the list, they won't be presented as suggestions.
    • To include selections added to the list, the user must enter these suggestions in the individual cells above the active cell and column where they are wanted as suggestions.

    There was a request here a while there is a list of suggestion 'live' similar to those of some websites, which offers a descending list of possible entries as a type in an input box.

    The only way I see to reach a solution similar to what you have asked is to use as many lines at the top of the non-en-tete of the table section to list the items likely to repeat in your table, and then hide the lines. You'll need a list for each column where you want to use this feature with a list previously planted. Existing items will then require a likely hit up to three, then a click to choose from a list small enough to enter a value into a cell. News he will need to enter in full the first time, but after that it will be put on the list and answer the same thing as the terms preseeded.

    While your setting upward (or decide not to do), consider going on the menu of number (in numbers), choosing to provide feedback from numbers and writing a feature in Apple request. Describe what you want. Explain how he could help the average user numbers, and then hope for the best.

    Kind regards

    Barry

  • I installed VMware ESXi on my Cisco's UCS server but after that I don't get from CIMC.

    I installed VMware ESXi on my Cisco's UCS server but after that I don't get from CIMC. also, I am unable to ping the address IP of CIMC. Any help?

    I think that MMIC does nothing with your ESXi installation... it is OoB management for servers of the UCS.

    Check your config MMIC inside the BIOS again.

    BR,

    Dragan

Maybe you are looking for