Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Database & SysAdmin
  3. Database
  4. reporting left to right instead of top to bottom [not solved but project went another way so closed]

reporting left to right instead of top to bottom [not solved but project went another way so closed]

Scheduled Pinned Locked Moved Database
csharpasp-netdatabasehardwarehelp
7 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    gavindon
    wrote on last edited by
    #1

    Ok I have a report list item. this list has textboxes etc inside it and is 7 inches tall. My question is the behavior seems to be that the list repeats by putting the next one underneath it and so on which results in one list showing per page. What I wish to do is repeat that same list from left to right filling the possible space that way BEFORE dropping down to the next page. With the page in landscape, this would put 3 lists on one page before going to page 2. So instead of

    LIST
    ITEM NAME
    ITEM NUMBER

    page down

    LIST
    ITEM NAME
    ITEM NUMBER

    page down

    I would like to see

    LIST LIST LIST
    ITEM NAME ITEM NAME ITEM NAME
    ITEM NUMBER ITEM NUMBER ITEM NUMBER

    page down

    To be clear this list has many more things than those two. that is just for visual reference. Its a very structured list with around 25 items in it including some images . Everything inside the list is out of a database, nothing static. I have poked, prodded and read until my eyes bleed and either I'm missing something so simple I need to be shot, or this is something not normally done in a report. This report is embedded in an ASP.net app but I posted here since the issue is with the structure of the report itself, nothing really dealing with asp.net

    Programming is a race between programmers trying to build bigger and better idiot proof programs, and the universe trying to build bigger and better idiots, so far... the universe is winning.

    J S 2 Replies Last reply
    0
    • G gavindon

      Ok I have a report list item. this list has textboxes etc inside it and is 7 inches tall. My question is the behavior seems to be that the list repeats by putting the next one underneath it and so on which results in one list showing per page. What I wish to do is repeat that same list from left to right filling the possible space that way BEFORE dropping down to the next page. With the page in landscape, this would put 3 lists on one page before going to page 2. So instead of

      LIST
      ITEM NAME
      ITEM NUMBER

      page down

      LIST
      ITEM NAME
      ITEM NUMBER

      page down

      I would like to see

      LIST LIST LIST
      ITEM NAME ITEM NAME ITEM NAME
      ITEM NUMBER ITEM NUMBER ITEM NUMBER

      page down

      To be clear this list has many more things than those two. that is just for visual reference. Its a very structured list with around 25 items in it including some images . Everything inside the list is out of a database, nothing static. I have poked, prodded and read until my eyes bleed and either I'm missing something so simple I need to be shot, or this is something not normally done in a report. This report is embedded in an ASP.net app but I posted here since the issue is with the structure of the report itself, nothing really dealing with asp.net

      Programming is a race between programmers trying to build bigger and better idiot proof programs, and the universe trying to build bigger and better idiots, so far... the universe is winning.

      J Offline
      J Offline
      Jorgen Andersson
      wrote on last edited by
      #2

      The problem you are having is about presentation, so I would say you are wrong about trying to solve this in the database. You also say that:

      gavindon wrote:

      This report is embedded in an ASP.net app

      I get the impression that you're actually not using an Asp.net application for the actual report. Normally the aspx page would have been the right place to solve the presentation problem, but now I have to ask: What reporting system are you using?

      List of common misconceptions

      G 1 Reply Last reply
      0
      • G gavindon

        Ok I have a report list item. this list has textboxes etc inside it and is 7 inches tall. My question is the behavior seems to be that the list repeats by putting the next one underneath it and so on which results in one list showing per page. What I wish to do is repeat that same list from left to right filling the possible space that way BEFORE dropping down to the next page. With the page in landscape, this would put 3 lists on one page before going to page 2. So instead of

        LIST
        ITEM NAME
        ITEM NUMBER

        page down

        LIST
        ITEM NAME
        ITEM NUMBER

        page down

        I would like to see

        LIST LIST LIST
        ITEM NAME ITEM NAME ITEM NAME
        ITEM NUMBER ITEM NUMBER ITEM NUMBER

        page down

        To be clear this list has many more things than those two. that is just for visual reference. Its a very structured list with around 25 items in it including some images . Everything inside the list is out of a database, nothing static. I have poked, prodded and read until my eyes bleed and either I'm missing something so simple I need to be shot, or this is something not normally done in a report. This report is embedded in an ASP.net app but I posted here since the issue is with the structure of the report itself, nothing really dealing with asp.net

        Programming is a race between programmers trying to build bigger and better idiot proof programs, and the universe trying to build bigger and better idiots, so far... the universe is winning.

        S Offline
        S Offline
        Simon_Whale
        wrote on last edited by
        #3

        If your using SQL Server have a look into Pivot Queries[^]

        As barmey as a sack of badgers Dude, if I knew what I was doing in life, I'd be rich, retired, dating a supermodel and laughing at the rest of you from the sidelines.

        G 1 Reply Last reply
        0
        • J Jorgen Andersson

          The problem you are having is about presentation, so I would say you are wrong about trying to solve this in the database. You also say that:

          gavindon wrote:

          This report is embedded in an ASP.net app

          I get the impression that you're actually not using an Asp.net application for the actual report. Normally the aspx page would have been the right place to solve the presentation problem, but now I have to ask: What reporting system are you using?

          List of common misconceptions

          G Offline
          G Offline
          gavindon
          wrote on last edited by
          #4

          you are 100% correct sir. I only mentioned the asp.net as a reference to where it all lives. I'm using the VS built in rdlc reports to build this. And it is 100% a presentation problem not a coding one. I came here to database because I am essentially using reporting services functionality for this and thought database people might have more insight into the presentation than a pure coder. So this is a .rdlc that I show in an asp.net reportviewer , it is then exported form the reportviewer to a pdf and sent off to a printing company. I have all that figured out just this one presentation issue. And it is only an issue due to the fact that we often print just a few here at the office rather than do the whole batch t he printer. If i only had one per page, it is a waste of paper when 3 of them will fit on a page.(assuming I can get this figured out that is.)

          Programming is a race between programmers trying to build bigger and better idiot proof programs, and the universe trying to build bigger and better idiots, so far... the universe is winning.

          1 Reply Last reply
          0
          • S Simon_Whale

            If your using SQL Server have a look into Pivot Queries[^]

            As barmey as a sack of badgers Dude, if I knew what I was doing in life, I'd be rich, retired, dating a supermodel and laughing at the rest of you from the sidelines.

            G Offline
            G Offline
            gavindon
            wrote on last edited by
            #5

            SQL server 2008 r2. This might indeed be the answer to my issue. I will have a go at this and see. Thank you for pointing that out. As I am not a database person really never had anything to do with it, Knowing even where to start looking is a huge bonus and thanks again for the pointer. I will update to let you know if that solved the issue.

            Programming is a race between programmers trying to build bigger and better idiot proof programs, and the universe trying to build bigger and better idiots, so far... the universe is winning.

            S 1 Reply Last reply
            0
            • G gavindon

              SQL server 2008 r2. This might indeed be the answer to my issue. I will have a go at this and see. Thank you for pointing that out. As I am not a database person really never had anything to do with it, Knowing even where to start looking is a huge bonus and thanks again for the pointer. I will update to let you know if that solved the issue.

              Programming is a race between programmers trying to build bigger and better idiot proof programs, and the universe trying to build bigger and better idiots, so far... the universe is winning.

              S Offline
              S Offline
              Simon_Whale
              wrote on last edited by
              #6

              your welcome :)

              As barmey as a sack of badgers Dude, if I knew what I was doing in life, I'd be rich, retired, dating a supermodel and laughing at the rest of you from the sidelines.

              G 1 Reply Last reply
              0
              • S Simon_Whale

                your welcome :)

                As barmey as a sack of badgers Dude, if I knew what I was doing in life, I'd be rich, retired, dating a supermodel and laughing at the rest of you from the sidelines.

                G Offline
                G Offline
                gavindon
                wrote on last edited by
                #7

                thats not quite what I wanted to do but it was close. and it was very informative and gave me some more tools for the next project. So problem not solved but still of value and thanks again.

                Programming is a race between programmers trying to build bigger and better idiot proof programs, and the universe trying to build bigger and better idiots, so far... the universe is winning.

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups