Distribute records list in many columns?

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Distribute records list in many columns?

    I have a recordset that gives me a list of about 20~30 records, and I want them in two columns of 10~15 records each.

    Anybody could tell me how to do it? I've no ide... :(

    Tnx!
    CharlyAR Guest

  2. Similar Questions and Discussions

    1. Splitting a List control into columns
      I have the following XML structure as data provider for List control: <?xml version="1.0" encoding="UTF-8"?> <europe> <areas> <area label="West...
    2. How to set no. of columns in list ?
      Hi, I have a list in which I would like to set the number of columns to just more than two. Is this possible ? Earlier I downloaded an example...
    3. Selection of records in list
      Dear folks: I was wondering how to query MySQL to display only a selection (1-20, 21-40) of a query in an HTML list. Can that be done in an SQL...
    4. Deleting records against a list
      Let's say I have a database of 10,000 contacts. I send email out to them all and 200 of them bounce back. I collect those 200 bounces and parse...
    5. Wrapping list in multiple columns
      Hello, I have long list of names that I would like to wrap across multiple columns (like a newspaper). Are there any suggestions on how to go...
  3. #2

    Default Re: Distribute records list in many columns?

    Hi

    You could try something like this:

    query for first list

    select top 15 * from table
    order by X

    Query for second list

    select top 15 * from table where X not in (select top 15 X from table)
    order by X

    I hope that makes sense! it did when I thought it lol!!!

    Karen

    big_old_bird Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139