Rank() partition by in webi

Dear All,
I'm having requirement to implement rank() partition by  order by in webi report.
How can achieve it without help of universe. I have to impliment in Report level.
Thanks for your Help
Regards,
Shekar

Have you tried using calculation context at the webi formula level.. The process is quite simple actually at the report level..
If you have not used calc context before then suggest you to go through one of my blog below
Understanding calculation Context (Basics)
The formula should be fairly simple.. something like
rank([revenue]) in ([Dim1])

Similar Messages

  • Implementing Rank / Partitioned Index

    Has anyone implemented a partitioned RANK in Power Query? I understand I can Sort and then create an Index, but how can I define partitions for the index? Is there some way I can make it restart with each new partition value?
    For instance, I want to rank company performance in each sport:
    let
    Source = Table.FromRecords(
    {[Company = "Company A", Event = "Swimming", Points = 8],
    [Company = "Company A", Event = "Running", Points = 5],
    [Company = "Company B", Event = "Swimming", Points = 10],
    [Company = "Company B", Event = "Running", Points = 2],
    [Company = "Company C", Event = "Swimming", Points = 2],
    [Company = "Company C", Event = "Running", Points = 4] })
    in
    #"Source"
    Is there a way to do this, besides manually filtering to a single sport, doing the Sort + Index, repeating this step for each sport, and then appending these steps?

    Since there is a built-in rank function in Power Pivot and you have more control over filtering etc., if one has the choice, then Power Pivot is the better option. On the other hand, Curt provides a fine solution if you need to do the equivalent in Power
    Query.
    It appears though, that you'd rather not have an index column and the lot. An alternative solution involves using a couple of portable custom functions.
    ListRankEqual:
    (inputValue as any, inputSeries as list, optional orderDescending as nullable logical) as number =>
    let
        SortedSeries = if not orderDescending or orderDescending = null then
                        List.Sort(inputSeries,Order.Descending)
                     else
                        List.Sort(inputSeries),
        RankEqual = List.PositionOf(SortedSeries,inputValue)+1
    in
        RankEqual
    The function has two mandatory parameters and one optional parameter. In your example, inputValue would be the current value in the Points column, specified as [Points] when passed to the function. inputSeries would be the entire Points column, or in this
    case, a subset of the Points column. In the body of the function, we sort inputSeries in
    descending order to get the rank in ascending order and vice versa.
    The second function I call GroupList. I tend to use this function when I want to group a column, but retain the original columns in a table. In your example, we want to rank Swimming and Running independently. Therefore, we need
    to create a Swimming points list and a Running points list for the ListRankEqual function.
    The code for GroupList:
    (keyColumnList as list, keyColumnValue as any, associatedColumnList as list)=>
    let
        FilteredKeyColumnPositions = List.PositionOf(keyColumnList, keyColumnValue, Occurrence.All),
        FilteredGroupList = List.Transform(FilteredKeyColumnPositions, each associatedColumnList{_})
    in
       FilteredGroupList
    keyColumnList is the list of values in the grouping column. In this case, it would be specified as
    Source[Event]. keyColumnValue is the current value in the Event column, specified as [Event]. associatedColumnList is the column with the values you want to rank (Source[Points]).
    GroupList first finds all the positions of the current value in the Event column. It then uses List.Transform to produce a corresponding Point list. The Swimming event will produce a list containing all of the points for Swimming, and the Running event
    will produce a list containing all of the points for Running.
    The complete custom formula would be:
    ListRankEqual([Points],GroupList(Source[Event],[Event],Source[Points]))
    You just toss the formula into a new custom column.

  • Getting Dictinct rows based on Rate (Using RANK, PARTITION BY)

    Hi,
    I need an SQL query that will return only 2 rows (DISTINCT by CODE) from the following table.
    If the "CODE" is the same I want to get a record which has MAX Date on it..
    ID          DATE          CODE     Price
    1234          12/31/2007     AB     2.01
    1234          01/02/2008     AC     1.01     
    1234          01/02/2008     AC     9.4
    1234          01/03/2008     AC     5.5
    Output:
    1234          12/31/2007     AB     2.01
    1234          01/03/2008     AC     5.5I want this query using latest functions (Rank OR/AND PARTITION BY)..
    Message was edited by:
    SeshuGiri

    Unless the data changes.....
    ME_XE?with td as ( select 1234 id, to_date('12/31/2007', 'mm/dd/yyyy') my_date, 'AB' code, 2.01 price from dual
      2               union all
      3               select 1234, to_date('01/02/2008', 'mm/dd/yyyy'), 'AC', 1.01 from dual
      4               union all
      5               select 1234, to_date('02/02/2008', 'mm/dd/yyyy'), 'AC', 9.4 from dual
      6               union all
      7               select 1234, to_date('03/03/2008', 'mm/dd/yyyy'), 'AC', 5.5 from dual
      8             ) -- end testdata
      9  select *
    10  from   ( select id, my_date, code, price, dense_rank() over ( partition by trunc(my_date, 'MM') order by code, my_date desc) rn
    11           from td
    12         )
    13  where  rn = 1;
                    ID MY_DATE                    CODE                PRICE                 RN
                  1234 31-DEC-2007 12 00:00       AB                   2.01                  1
                  1234 02-JAN-2008 12 00:00       AC                   1.01                  1
                  1234 02-FEB-2008 12 00:00       AC                    9.4                  1
                  1234 03-MAR-2008 12 00:00       AC                    5.5                  1
    4 rows selected.
    Elapsed: 00:00:00.23
    ME_XE?You'd want to partition by CODE, not by TRUNC(my_date, 'MM').

  • MDX Rank Over Partition

    Are there any MDX gurus who can help me?
    I am trying to produce an MDX query that generates a ranked result set, within this I am trying to get two levels of ranking based on Net Sales, firstly the ranking within the overall set, and secondly a ranking partitioned by an attribute dimension (the equivalent of RANK () OVER (PARTITION BY ...) in SQL Server), with the final result set sorted alphabetically by the attribute name and secondly by Net Sales. So far I have got the sorting and the overall ranking to work but not the partitioned rank. Any solution will need to be fast as the base dimension has 100K members.
    My current MDX looks like this:
    WITH
    SET [Divisions] AS '[AttributeContract].[Att_CC01].Children'
    SET [ContractsByDiv] AS
    'GENERATE(
    ORDER(
    [AttributeContract].[Att_CC01].Children,
    AttributeContract.CurrentMember.[MEMBER_NAME],
    BASC
    CROSSJOIN(
    AttributeContract.CurrentMember
    ORDER(
    NonEmptySubset(
    UDA([Entity].[Entity Contract Reporting], "Contract")
    [Net Sales],
    BDESC
    MEMBER [Account].[Overall Rank] AS 'Rank([ContractsByDiv].CurrentTuple,[ContractsByDiv],[Net Sales])'
    MEMBER [Account].[Rank In Div] AS '1'
    SELECT
    [Net Sales]
    ,[Overall Rank]
    ,[Rank In Div]
    } ON COLUMNS,
    [ContractsByDiv]
    } ON ROWS
    FROM HCREPRT2.Analysis
    WHERE
    [Year].[FY13],
    [Period].[BegBalance],
    [ISBN Type].[Total ISBN Type],
    [Lifecycle].[Front List],
    [Scenario].[DPG_Budget],
    [Market].[Total Market],
    [Version].[Working],
    [Sales Channel].[Total Sales Channel]
    Any suggestions as to how to do this or whether it is possible?
    Regards,
    Gavin
    Edited by: GavinH on 07-Mar-2012 02:57

    This was the solution I came up with:
    The following query returns a result set with the the data ranked across the overall set and with a ranking partioned by division:
    WITH
    SET [Divisions] AS 'ORDER([AttributeContract].[Att_CC01].Children,AttributeContract.CurrentMember.[MEMBER_NAME],BASC)'
    SET [EntitySet] AS 'ORDER(NonEmptySubset(UDA([Entity].[Entity Contract Reporting], "Contract")),[Net Sales],BDESC)'
    SET [ContractsByDiv] AS
    'GENERATE(
    [Divisions],
    CROSSJOIN(
    AttributeContract.CurrentMember
    NonEmptySubset([EntitySet])
    -- Rank in whole data set
    MEMBER [Account].[Overall Rank] AS 'Rank([ContractsByDiv].CurrentTuple,[ContractsByDiv],[Net Sales])'
    -- Ranking in division
    MEMBER [Account].[Rank In Div] AS
    'Rank(
    ([AttributeContract].CurrentMember,[Entity].[Entity Contract Reporting].CurrentMember),
    CROSSJOIN(
    AttributeContract.CurrentMember
    NonEmptySubset([EntitySet])
    [Net Sales]
    -- Rownumber
    MEMBER [Account].[RowNumber] AS 'RANK([ContractsByDiv].CurrentTuple,[ContractsByDiv],1,ORDINALRANK)'
    SELECT
    [Net Sales]
    ,[Overall Rank]
    ,[Rank In Div]
    ,[RowNumber]
    } ON COLUMNS,
    [ContractsByDiv]
    } ON ROWS
    FROM HCREPRT2.Analysis
    WHERE
    [Year].[FY13],
    [Period].[BegBalance],
    [ISBN Type].[Total ISBN Type],
    [Lifecycle].[Front List],
    [Scenario].[DPG_Budget],
    [Market].[Total Market],
    [Version].[Working],
    [Sales Channel].[Total Sales Channel]
    The key was to use the cross join portion of the generate statement used to create the overall set as the set for the intra divisional ranking.

  • Ranked results through web services

    I am using the web service API to create a custom search interface and my results are coming back unranked. The provided search tool gives these results sorted by rank and I was wondering is there a parameter to use for performing a query through the API to get ranked results or do I have to manually sort and display the results myself?
    Documentation for the Java proxy library doesn't seem to exist. Any help greatly appreciated. Thanks.

    I did some more testing and have found that I am getting the results ranked, however I am getting old rank scores through the web service.
    For example, I perform a query and have 3 results. These results each had an initial ranking of 20. Now through the admin tool I have changed the result rankings to 60, 40, and 30. With the provided search tool I get the updated and expected ordering of results with this query.
    However, through the web service API I get the results back with the original scores of 20 for each result and the original ordering before I edited the relevancy scores. This is not just a problem with my own application as I have also setup and run the sample WS application. It too is displaying the results in the original ordering.
    A few questions I can think of then is...
    Where and when was that original rank of 20 determined for each result?
    Why is the web service giving me back results with old rank scores after I have updated them?

  • Web-building my site. FIREFOX and NAVIGATOR is great but not SAFARI. Why?

    Hi,
    I am building my web site http://www.philthesecurityguard.com/ everything works great on FIREFOX and NAVIGATOR but not SAFARI. Example: on my web site, I click on REAL LETTERS in SAFARI and HALF of orange squares appears outside of my letters. FIREFOX and NAVIGATOR have FULL orange squares on the outside of my letters. Another example: The vertical thin partitions on my web is red on FIREFOX and NAVIGATOR, but there is no red line on SAFARI. How come SAFARI is "short circuiting?" (I have Adobe GoLive web builder.) [email protected]

    > Tim G" <[email protected]> wrote
    in message
    > news:gha37j$7lg$[email protected]..
    > "jus2sho" <[email protected]> wrote in
    message
    > news:gha2rf$74r$[email protected]..
    >> Thierry,
    >> Can you elaborate a little on what you said. I'm a
    complete noob that
    >> knows a
    >> little about how to use DW. Will adding the .html
    extension fix my
    >> problem? I
    >> have yet to change it because I don't have access to
    Firefox to try out
    >> right
    >> now. I will in the morning.
    >
    >
    > You absolutely need to have an HTML-compatible
    extension. Whether that is
    > your only problem... well, fix that, and then see.
    Configuring the server would allow the OP to use file names
    with no
    extension [1], which imho would be a better approach [2].
    Cool URIs don't change...
    [1]
    http://www.w3.org/Provider/Style/URI
    [2]
    http://www.w3.org/Provider/Style/URI#remove
    Thierry | Adobe Community Expert | Articles and Tutorials ::
    http://www.TJKDesign.com/go/?0
    Spry Widgets |
    http://labs.adobe.com/technologies/spry/samples/
    [click on
    "Widgets"]
    Spry Menu Bar samples |
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html

  • 9iAS and Partitioning - Sandard Ed or Ent Ed system req ?

    Hi,
    If you can answer any or all the questions below please do.
    Which version is partitioning tables in on 9iAS ?
    Core/Minimal/Standard or Enterprise ?
    Are there any documentations or a matrix that displays
    what is available in which version, web cache, db cache etc ?
    Is it possible to upgrade the apache server without upgrading
    to a later version of 9iAS ?
    What is the basic system requirements for the following
    and how much space does it (9iAS) take up for:
    Partitioning tables.
    Web Cache.
    Db Cache.
    Apache server.
    Regards
    Matt

    Are there any documentations or a matrix that displays
    what is available in which version, web cache, db cache etc ?
    -- please see the install guide
    Is it possible to upgrade the apache server without upgrading
    to a later version of 9iAS ?
    -- no
    What is the basic system requirements for the following
    and how much space does it (9iAS) take up for:
    Partitioning tables.
    Web Cache.
    Db Cache.
    Apache server.
    -- also in the install guide

  • Cfimage, captcha and partitions

    Forgive me if I am overlooking something blindingly obvious,
    but we are having a problem using the captcha attribute of cfimage
    action. With our installation of CF8 running on a separate
    partition from our web root, the folder where the image is created,
    under tmpCache below the CF8 folder, is apparently unreachable by
    the servlet (?). Has anyone run in to this? Is there a simple
    mapping solution? Or an xml file containing a path to edit? Any
    help or pointers would be greatly appreciated.
    Thanks.

    May want to check your web server to be sure it's not Denying access to that folder based URL Request filtering.  Part of the ColdFusion lockdown guide recommends to Deny access to this folder unless you use CFImage, CFChart, CFPresentation, or CFReport.
    Page 30 here:
    http://www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf11/cf11-lockdown-guid e.pdf

  • SQlldr Error while uploading "excel" or "csv" file.

    Hello to community,
    We are using Oracle AS(application Server) 10g as a "web Server" & "database Server"
    The Database Server is having an NFS Partition,which has mounted onto "Web Server"
    So, if any client tried to upload any excel OR csv file , the Web Server will redirect that file data onto "database" server" through NFS partition.
    By clicking "upload" button from client end, they are getting a strange error. By checking "ias_console" log file, I have found below latest logs,which belongs to the error. Kindly let me know where is the problem coming from.
    The Database Server Shared NFS partition name is "web_upload" & we have same "web_upload" partition on the "web server". The command of mounting NFS partition is given below.
    On AIX web Server :- mount <ip address>:/file_data/web_upload/ /web_upload/
    SYNTAX :- <ip add of db server>/mount point "web server mount point"
    The error is as given below.
    09/06/09 15:27:47 NumIdle: 2
    09 Jun 2009 15:27:47,764 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ private Connection getDBConnection() ] Exited
    09 Jun 2009 15:27:47,764 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ private Connection getDBConnection() ] Exited
    09 Jun 2009 15:27:47,766 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ private void initialize() ] After getDBConnection called,
      connection object is: org.apache.commons.dbcp.PoolableConnection@1048a893
    09 Jun 2009 15:27:47,767 [DEBUG] - [ com.vat.website.service.ExcelUploadService ] [ public boolean insertFileDetails(ExcelDataBean databean,String
      strFname) ] strUniqueKey:select  web_uploaded_file_history_seq.nextval from dual
    09 Jun 2009 15:27:47,767 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ public ResultSet executeQuery(String strQuery) ] Entered
    09 Jun 2009 15:27:47,773 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ public ResultSet executeQuery(String strQuery) ] Exited
    09 Jun 2009 15:27:47,774 [DEBUG] - [ com.vat.website.service.ExcelUploadService ] [ public boolean insertFileDetails(ExcelDataBean databean,String
      strFname) ] insertQuery:INSERT INTO WEB_UPLOADED_FILE_HISTORY(WUF_SERIAL_NUMBER,WUF_DEALER_ID,WUF_PERIOD_FROM,WUF_PERIOD_TO,WUF_FILE_PATH,WUF_FORM_NO,WUF_SERVER_IP,WUF_UPLOAD_YN,WUF_CREATED_DATE,WUF_CREATED_BY,WUF_ORIGINAL_REVISED,WUF_SHEETS_NUMBER,wuf_reco
      d_key)VALUES('2658271','T00100001000306',to_date('01/01/2009','dd/mm/yyyy'),to_date('31/01/2009','dd/mm/yyyy'),'/web_upload/090609/VAT
      Returns/000000/0000000000/Form201/0000000000_0T201BO0109_009062009152747.csv',replace(decode('T201B','T201M', 'T201','T201B'),'T','VAT-Form'),(select
      RPAD(sys_context('USERENV','IP_ADDRESS'),15,' ') AS client_ipaddress from dual),'Y',SYSDATE,'WEB','O','0','3317063')
    09 Jun 2009 15:27:47,791 [DEBUG] - [ com.vat.website.service.DatabaseService ] [ public void closeDBConnection() ] Entered
    09 Jun 2009 15:27:47,791 [DEBUG] - finalDate:01-JAN-2009
    09 Jun 2009 15:27:47,792 [DEBUG] - finalDate:31-JAN-2009
    09 Jun 2009 15:27:47,806 [DEBUG] - [ com.vat.website.utils.PropertyCache ] [ static Object getValue(String propertyName, String propertyFileName)
      ] Entered
    09 Jun 2009 15:27:47,806 [DEBUG] - [ com.vat.website.utils.PropertyCache ] [ static Object getValue(String propertyName, String propertyFileName)
      ] Entered
    09 Jun 2009 15:27:47,806 [DEBUG] - [ com.vat.website.utils.PropertyCache ] [ static Object getValue(String propertyName, String propertyFileName)
      ] Entered
    09 Jun 2009 15:27:47,806 [DEBUG] - [ com.vat.website.action.UploadAction ] [ public ActionForward submit(ActionMapping mapping, ActionForm
      form,HttpServletRequest request, HttpServletResponse response) ] Executing: sqlldr parfile=parafile.par silent=feedback direct=Y at location:
      /web_upload/090609/VAT Returns/000000/0000000000/Form201/SQLLdr
    It seems that this problem is due to "Sqlldr" then how to troubleshoot this problem?
    Waiting for your favorable response,
    Advanced Thanks,
    Nishith Vyas.

    Flat File was in error.

  • CUCM Upgrade from 8.6(2a) / 8.6.2.20000-2 to 8.6.(2a)SU2 (8.6.2.22900-9)

    I'm getting ready to upgrade a client's CUCM cluster from 8.6(2a) / 8.6.2.20000-2 to 
    8.6.(2a)SU2 (8.6.2.22900-9).  They use extension mobilty with UCCX version 8.5.1.11003-32.
    Does anyone know of any issues with ugprading this cluster vis a vis their UCCX version ?
    The current CUCM Version 8.6(2a) / 8.6.2.20000-2 shows a JTAPI shows the following JTAPI version:
    admin:show packages active cm-jtapi-
    Active Side Package(s): for cm-jtapi- package(s)
    cm-jtapi-plugin-8.6.2.10000-2
    From the ReadMe For Cisco Unified Communications Manager Release 8.6(2a)SU2
    http://www.cisco.com/web/software/282074295/93949/cucm-readme-862asu2.pdf
    I see that it shows:
    cm-jtapi-plugin-8.6.2.10000-10.i386.rpm
    Once I have performed the CUCM upgrade - do I need to upgrade the JTAPI plugin on the UCCX Platform?
    TIA

    Mohamed,
    I have not actually peformed the upgrade yet.  If you have done so - please reply with any lessons learned that you have.
    I would upload the file to all the servers in your cluster prior to your upgrade maintenance window.  This should not be service impacting.
    Then during your upgrade maintenance window -
    Step 15 Once the Publisher and the subscribers have been upgraded, a version switch must be completed so                  the servers reboot to the new upgraded partition as follows;
    Web Browse to the Publisher’s OS Administration GUI
    To restart the system and activate the upgrade, choose Settings > Version; then, click Switch Version.
    The system restarts and should be running the upgraded software. Once the Publisher is accessible, proceed with the subscribers.
    Good Luck,
    Amir

  • Text in iWeb pages.

    Dear all:
    I am experiencing a problem with iWeb.
    The text I create on iWeb pages don't seem to be rendered as text but rather images. After I created several pages for my business' web page, publish them to a folder and open with any browser (I use Safari) the text can't be selected but appears as one image block that I can drag just like an image and save to my desktop.
    Is this the way iWeb handles text ?
    This obviously represents a big problem as the pages can not be properly indexed with search engines such as Google and it affects the overall ranking of my business' web site.
    How can iWeb create text that is rendered as text once pages are published ?
    In case it can't what is one supposed to do to have the text on the pages appear as text to the spiders from search engines ?
    Thank you in advance,
    Joseph Chamberlain

    This ALT tags you are referring to, are they the tags
    associated with images for accessibility purposes
    (visually impaired users) ?
    I don't know if they are used in that way. I do know that this text in the ALT tags is displayed whenever the actual image becomes unavailable. Have a look at the source HTML of your own page to get an idea of what this looks like.
    In regards to keywords how can one enter keywords for
    differenet iWeb pages to improve ranking with search
    engines ?
    I think with the modern search engines like Google, keywords and other meta-information has become less useful and certainly not necessary to get your page indexed properly. These search engines work mostly off contextual information like the ALT tags and other things contained in the HTML code. If you would like to add meta information, that is certainly possible....but not through iWeb directly. You would need to edit the HTML and add them yourself. Here is a thread in which I have posted the general format...
    http://discussions.apple.com/thread.jspa?messageID=2685951&#2685951

  • Top n analysis without analytical function or rownum

    Hi
    I am working on Oracle 9i and i have the following query.
    My data is like as
    Year Type Total
    1996 A 23
    1996 B 34
    1996 C 19
    1996 D 11
    1996 E 45
    1996 F 32
    1997 A 12
    1997 B 11
    1997 C 34
    1997 D 45
    1997 E 67
    1997 F 11
    My requirement is to get the top 4 value year wise from the above data. All i need is without the use of ROWNUM as well as other analytical functions like RANK, PARTITION BY etc.
    The required result set is
    Year Type Total
    1996 E 45
    1996 B 34
    1996 F 32
    1996 A 23
    1997 E 67
    1997 D 45
    1997 C 34
    1997 A 12
    Thanks
    MS

    Maybe you can try this:
    SQL> WITH TABLE_A AS
      2  (
      3  SELECT '1996' COL1, 'A' COL2, 23 COL3 FROM DUAL
      4  UNION ALL
      5  SELECT '1996' COL1, 'B' COL2, 34 COL3 FROM DUAL
      6  UNION ALL
      7  SELECT '1996' COL1, 'C' COL2, 19 COL3 FROM DUAL
      8  UNION ALL
      9  SELECT '1996' COL1, 'D' COL2, 11 COL3 FROM DUAL
    10  UNION ALL
    11  SELECT '1996' COL1, 'E' COL2, 45 COL3 FROM DUAL
    12  UNION ALL
    13  SELECT '1996' COL1, 'F' COL2, 32 COL3 FROM DUAL
    14  UNION ALL
    15  SELECT '1997' COL1, 'A' COL2, 12 COL3 FROM DUAL
    16  UNION ALL
    17  SELECT '1997' COL1, 'B' COL2, 11 COL3 FROM DUAL
    18  UNION ALL
    19  SELECT '1997' COL1, 'C' COL2, 34 COL3 FROM DUAL
    20  UNION ALL
    21  SELECT '1997' COL1, 'D' COL2, 45 COL3 FROM DUAL
    22  UNION ALL
    23  SELECT '1997' COL1, 'E' COL2, 67 COL3 FROM DUAL
    24  UNION ALL
    25  SELECT '1997' COL1, 'F' COL2, 11 COL3 FROM DUAL
    26  )
    27  SELECT COL1, COL2, COL3 FROM
    28  (
    29  SELECT
    30  COL1,
    31  COL2,
    32  COL3,
    33  (SELECT COUNT(1) FROM TABLE_A B WHERE A.COL1 = B.COL1 AND B.COL3 > A.COL3) ORDER_NUM
    34  FROM
    35  TABLE_A A
    36  ORDER BY
    37  COL1, COL3 DESC
    38  ) WHERE ORDER_NUM < 4
    39  /
    COL1 C       COL3                                                              
    1996 E         45                                                              
    1996 B         34                                                              
    1996 F         32                                                              
    1996 A         23                                                              
    1997 E         67                                                              
    1997 D         45                                                              
    1997 C         34                                                              
    1997 A         12                                                              

  • What is the proper way to include search terms in your page

    Say you have a web page that is about a certain topic and has information displayed on the page.  What is the proper way to include terms that you would like this page to show up on a search for but don't necessarily want to display on the page?
    I didn't know if including the search keywords at the bottom in small font with invisible color was the proper way.

    I didn't know if including the search keywords at the bottom in small font with invisible color was the proper way.
    ABSOLUTELY NOT!!!  This practice will get your site banned or blacklisted from Search Engines.  It is considered a Black Hat tactic to attempt to mislead search engine results in an effort to drive traffic to your site.
    Instead, use plenty of keyword rich, relevant text and good semantic mark-up (h1, h2, h3) inside the body of your pages.   In time, search engines will find you.
    Some Excellent Links on Search Engine Optimization:
    Google's SEO Starter Guide (PDF)
    http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf.
    Can Better Web Accessibility Mean Better Search  Ranking?
    http://alt-web.blogspot.com/2007/07/can-better-web-accessibility-mean.html
    High Rankings Advisor
    http://www.highrankings.com/newsletter/
    SEOMoz.org - Beginner's Guide to SEO (1-page  html)
    http://www.seomoz.org/article/beginners-1-page
    SEO Chat
    http://www.seochat.com/
    Submit Site Maps to 4 Major Search Engines
    http://alt-web.blogspot.com/2008/11/submit-sitemaps-to-4-major-search.html
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    www.twitter.com/altweb
    www.alt-web.blogspot.com/

  • Keywords and Metatags

    I want to put keywords and Meta tags with my website.  Do I put that in html or am I meant to sort that out through my server?  I want to help search engines find my site.
    thanks,
    D
    www.meashu.com

    As Nadia says, keywords alone won't drive traffic to your site.  Good, relevant, keyword rich content is king.  Here are some resources to help you understand what your site needs to be Search Engine friendly.
    Google's SEO Starter Guide (PDF)
    http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf.
    Can  Better Web Accessibility Mean Better Search Ranking?
    http://alt-web.blogspot.com/2007/07/can-better-web-accessibility-mean.html
    High  Rankings Advisor
    http://www.highrankings.com/newsletter/
    SEOMoz.org  - Beginner's Guide to SEO (1-page html)
    http://www.seomoz.org/article/beginners-1-page
    SEO  Chat
    http://www.seochat.com/
    Submit Site  Maps to 4 Major Search Engines
    http://alt-web.blogspot.com/2008/11/submit-sitemaps-to-4-major-search.html
    Nancy  O.
    Alt-Web Design & Publishing
    www.alt-web.com
    www.twitter.com/altweb
    www.alt-web.blogspot.com/

  • Previous (Self) not working

    Guys,
    I know this is very simple, but I am stuck at one point.
    I am trying to implement Dense Rank function in my WebI report. I am using the below formula.
      =If([Ranking] = Previous([Ranking]) ; [Ranking];(Previous(Self)+1)). Previous (Self) is not taking the previous value, rather it is considering as 0. Please help me with this.

    Hi Sathish,
    Running Count gives me sequential numbers. I am trying to achieve the below (Dense Rank column).
    Ranking
    Dense Rank
    1
    1
    2
    2
    3
    3
    3
    3
    5
    4
    6
    5
    7
    6
    7
    6
    7
    6
    8
    7

Maybe you are looking for

  • Group by based upon condition

    Database : SQL Server 2000 Enterprise Edition OS : Windows Server 2003 Huh?  Every one will ask me why I am posting SQL Server question in Oracle forum ?  I shall reply something like this : Actually my friend is SQL Server DBA and he is getting prob

  • Im trying to log onto the internet, but it is not accepting the password. It did for my computer but its not for the ipod. any suggestions??

    I need some help. My ipod was working just fine with logging onto other peoples internet but for some reason i cant anymore. I know that the password is right because it worked with my computer but my ipod just keeps saying fail to connect every time

  • Can't change the document title when the browser is opened in dialog mode

    Hello experts, I'm working on a solution which involves opening up another .jspx page in dialog mode. I need to change the title of the dialog browser window dynamically when the user performs a specific action on the dialog page. Unfortunately, I ca

  • Itunes 7 with airtunes speakers

    After installing iTunes 7 on several macs and networks .. I can't select my airtunes speakers. In older version iTunes I can use these airtunes speakers ... What can that be? michel sorry close topic because of duplicate ... http://discussions.apple.

  • How do I achive 4bpp grayscale mode?

    When I save a PNG file (which I've read DOES support 4bpp grayscale) I can't figure how to save it in 4bpp grayscale mode. The modes I have achived are 32bpp (RGB + transparency) 24bpp (RGB) 8bpp (indexed color) 8bpp (grayscale as indexed color) 8bpp