How to create evenly spaced vertical rows?

Hello!
I need to create a grid with evenly spaced columns and rows, so what I basically need is the ability to vertically subdivide a frame in a number of steps, something similar to the "number of columns" input box for a text frame.
Currently my workaround is to create a text frame, turn it 90 degrees and then apply the "number of columns" command to the desired number of vertical subdivisions I need (I like this option cos' it provides a gutter between the rows). Is there something faster?

Set up the column width on that page to the value you need for spacing.
Draw a rectangle/text frame/graphic frame and
as you draw (don't release the mouse button) work with the arrow keys up and down.
Or go to Layout > Create guide lines and add your values there and draw your rectangles between these guide lines.

Similar Messages

  • How to create table with resizable row ?

    how to create table with resizable row ?

    I'd suggest you start here:
    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html

  • Creating even columns and rows in flash

    I need to create a grid in flash using the drawing tools. The
    grid has multiple (10+) columns and rows. Other than using the
    ruler and guides is there a way to ensure even spacing with columns
    and rows?

    Create the lines for the columns and locate the two end lines
    where they need to be using the Properties panel X positioning.
    Then, with the remaining lines placed between the two end lines,
    select all the lines and use the align tool to space them evenly.
    Do similarly for the row lines, but on a separate layer. You can
    move them to the column layer afterwards.

  • How to create XML from multiple rows in a table?

    Hi All,
    I have a table where it has multiple rows as below which I need to send as a XML.. can any one let me know how to create?
    Table:
    PRDID,NAME,DESCRIPTION,SUPPLIER,PRICE
    2012,AAA,ADESC,SUPPLIER1,1.8
    2012,AAA,ADESC,SUPPLIER2,2.5
    XML should be :
    <ROOT>
    <PRDID>2012</PRDID>
    <NAME>AAA</NAME>
    <DESCRIPTION>ADESC</DESCRIPTION>
    <PRICE>
    <REGION>SUPPLIER1</REGION>
    <PRICE>1.8</PRICE>
    <REGION>SUPPLIER2</REGION>
    <PRICE>2.5</PRICE>
    </PRICE>
    </ROOT>
    Thanks
    Rajeev

    Hi
    This white paper shows how to do it - http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/101c974c-11f9-2b10-4da5-cd350b7eeda0
    Michael

  • How to create a table with rows within a row?

    Hi,
    I am trying to create a table that looks like this: https://acrobat.com/#d=XyI3rlSWMWYXQixzpRSrXA but I can't figure it out.
    Please can someone tell how I should go about this?
    thanks for the help.

    Hi,
        We you see nested tables, you have to create a table inside a table. For this first you have to merge the rows and insert a table with the number of rows requested. You can find the sample created for you below and let me know in case of any issues
    https://sendnow.acrobat.com/m/g.ashx?i=rO1m-dIDzRs2FibTHDSiww&x=yrC*o4IZIVfpKgqOTbX8OQ
    Thanks

  • How to create a table,columns,rows dynamically

    Hi All,
    I would like to build an application which takes from date and to date as inputs and click on button it should create a table dynamically in the following format( rows - project Act1,Service Act2 etc....columns dates and total should be display rowwise and columnwise)
    From 06.22.2009            To 06.23.2009    Go(button)
                          06.22.2009 06.23.2009    Total
    Project act1    2                  2                  4
    Project Act2
    Service Act1    3               3                    6
    Total               5                5
    How do i build this application
    I should have ALV capability so that I can download.
    Thanks
    Bala Duvvuri
    Edited by: Bala Duvvuri on Jun 23, 2009 5:21 AM
    Edited by: Bala Duvvuri on Jun 23, 2009 5:22 AM
    Edited by: Bala Duvvuri on Jun 23, 2009 5:25 AM

    DATA lo_table_settings TYPE REF TO if_salv_wd_table_settings.
      DATA lo_standard_functions TYPE REF TO if_salv_wd_std_functions.
      DATA lo_column_settings TYPE REF TO if_salv_wd_column_settings.
      DATA lo_column TYPE REF TO cl_salv_wd_column.
      DATA lo_column_hdr TYPE REF TO cl_salv_wd_column_header.
      lo_table_settings ?= lo_table.
      lo_table_settings->set_selection_mode( cl_wd_table=>e_selection_mode-auto ).
      lo_table_settings->set_cell_action_event_enabled( value = abap_true ).
      lo_table_settings->set_width( value = '100%' ).
    set default ALV Functions off
      lo_standard_functions ?= lo_table.
    lo_standard_functions->set_sort_headerclick_allowed( abap_false ).
      lo_standard_functions->set_filter_filterline_allowed( abap_false ).
      lo_standard_functions->set_filter_complex_allowed( abap_true ).
      lo_standard_functions->set_sort_complex_allowed( abap_true ).
      lo_standard_functions->set_column_selection_allowed( abap_true ).
      lo_standard_functions->set_view_list_allowed( abap_true ).
      lo_standard_functions->set_pdf_allowed( abap_true ).
      lo_standard_functions->set_export_allowed( abap_true ).
      lo_standard_functions->set_dialog_settings_as_popup( abap_true ).
    lo_standard_functions->set_display_as_allowed( abap_true ).
    lo_standard_functions->set_graphic_allowed( abap_true ).
      lo_column_settings ?= lo_table.
    *To create a row with heading Matter No.
      lo_column = lo_column_settings->get_column( 'MTRID' ).
      lo_column_hdr = lo_column->create_header( ).
      lo_column_hdr->set_text( 'MATTER NO.' ).
    same way for other required field.

  • How to create a datatable with row headers and column headers

    Hi,
    I am trying to create a two dimensional datatable which has both column headers and row headers. using <h:datatable> i could create a datatable with only column headers.
    Thanks in advance

    Are you saying that you want a column with only th's? You could also just apply some CSS on that specific column that its rows look like headers.

  • How to create table with 1 row 1MB in size?

    Hello,
    I am doing some R&D and want to create a Table with 1 row, which is 1 MB in size.
    i.e. I want to create a row which is 1 MB in size.
    I am using a 11g DB.
    I do this in SQL*Plus:
    (1.) CREATE TABLE onembrow  (pk NUMBER PRIMARY KEY, onembcolumn CLOB);
    (2.) Since 1MB is 1024*1024 bytes (i.e. 1048576 bytes) and since in English 1 letter = 1 byte, I do this
    SQL> INSERT INTO onembrow VALUES (1, RPAD('A', 1048576, 'B'));
    1 row created.
    (3.) Now, after committing, I do an analyze table.
    SQL> ANALYZE TABLE onembrow COMPUTE STATISTICS;
    Table analyzed.
    (4.) Now, I check the actual size of the table using this query.
    select segment_name,segment_type,bytes/1024/1024 MB
    from user_segments where segment_type='TABLE' and segment_name='ONEMBROW';
    SEGMENT_NAME       
    SEGMENT_TYPE        
    MB
    ONEMBROW           
    TABLE            
    .0625
    Why is the size only .0625 MB, when it should be 1 MB?
    Here is the DB Block related parameters:
    SELECT * FROM v$parameter WHERE upper(name) LIKE '%BLOCK%';
      NUM NAME                                                                                   TYPE VALUE 
      478 db_block_buffers                                                                          3 0     
      482 db_block_checksum                                                                         2 TYPICAL
      484 db_block_size                                                                             3 8192  
      682 db_file_multiblock_read_count                                                             3 128   
      942 db_block_checking                                                                         2 FALSE 
    What am I doing wrong here???

    When testing it is necessary to do something that is a reasonably realistic model of a problem you might anticipate appearing in a production system - a row of 1MB doesn't seem likely to be a useful source of information for "R&D on performance tuning"
    What's wrong with creating millions of rows ?
    Here's a cut and paste from a windows system running 11.2.0.3
    SQL> set timing on
    SQL>
    SQL> drop table t1 purge;
    Table dropped.
    Elapsed: 00:00:00.04
    SQL>
    SQL> create table t1
      2  nologging
      3  as
      4  with generator as (
      5     select
      6             rownum id
      7     from dual
      8     connect by
      9             level <= 50
    10  ),
    11  ao as (
    12     select
    13             *
    14     from
    15             all_objects
    16     where   rownum <= 50000
    17  )
    18  select
    19     rownum          id,
    20     ao.*
    21  from
    22     generator       v1,
    23     ao
    24  ;
    Table created.
    Elapsed: 00:00:07.09
    7 seconds to generate 2.5M rows doesn't seem like a problem.  For a modelling example I have one script that generates 6.5M (carefully engineered) rows, with a couple of indexes and a foreign key or two, then collects stats (no histograms) in 3.5 minutes.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    Now on Twitter: @jloracle

  • How to create table with dynamic rows

    Hi Ppl,
    I have an array lets say with length of n. I want to creata table with 2 columns and no of rows = array length.
    lets say array length is 3 ( array[0] = 1, array[1] = 2, array[2] = 3) so the table should have 2 columns and 3 rows.
    After creation of table I want to display each array value in each row.
    Can somebody help me in this asap.
    Thanks \
    Ashish

    Hi, Thanks for reply... actually this is one part of rtf. I have put values from xml to an array and now I want to create a table with no of rows = length of array. so here xml will not be useful. could you pls think of it without xml.
    result is like
    lets says below is the array
    array[0] = a
    array[1] = b
    array[2] = c
    array length = 3
    so there should be a table of 2 coulmns and 3 rows. Second column of first row will show 'a', Second column of second row wil show 'b' and Second column of third row will show 'c'.
    Hope this is useful.
    Thakns
    Ashish

  • How to create a grand total row wise in obiee reports

    Hello every one,
    Can any one please suggest me how can I achieve the below scenario
    Presently I have
    Total_bill_to_client Total wip_to_bill total_realization_amount total_carry_forwardamount
    123334523234.00 4532423334.00 5324323234343434.00 3243242324324343324.00
    I want this to be displayed in PIE graph,but before that I need to change the format, can you help me how to get this.
    Total_bill_to_client 123334523234.00
    Total_wip_to_bill 4532423334.00
    total_realization_amount 5324323234343434.00
    total_carry_forwardamount 3243242324324343324.00
    Help me.
    Thanks,
    Ven
    Edited by: 991688 on Mar 15, 2013 11:04 AM

    Is'nt there any dimension in your analysis here .? I see only measures but what are you asking OBIEE to base its pie and slices on to show the Pie Graph?
    Let us know.
    Thanks,
    SVS

  • I have a cp1518ni laserjet printer that prints fine black evenly spaced vertical lines on Photo's

    The printer prints fine on Documents. I have changed out low toner cartridges, realigned the printer, and have installed additional  memory and still the lines persist. I use the universal print driver for PCL 5. Any ideas?

    Hello,
    You should try upgrading to PCL6 UPD.
    Here are a few links that might help:
    Software and Driver Download page for CP1518ni:
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&dlc=en&lc=en&os=2093&product=3422472&sw_la...=&
    Information regarding thin lines:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01487425&tmp_task=solveCategory&cc=us&dlc=en&lc...=
    Good luck,
    Lagun
    I work for HP, but my posts and replies are my own.
    I am an HP employee
    Say Thanks by clicking the Kudos Star if the post helped you.
    Please mark the post that solves your problem as Accepted Solution.

  • How to create tick marks within an arched area

    I need to recreate this dial and I've learned how to create evenly spaced tick marks within a circle, but this is an ellipse.  Here, I attempted to draw two ellipse then used the scissors to cut them to size.  Then I used the line tool and drew each of the tick marks.  Then I adjusted the weights of each tick.  This is not a good method because the end ticks are not meeting the ends of the ellipse perfectly, leaving a tiny bit of tick mark outside the ellipse.  There must be a better way to do this. Here is what I ended up with:
    But this is what I need to create:
    (I only need to create the arched part with tick marks of this dial)
    Any help is appreciated, but please note that I am familiar with only the very basics of illustrator, I simply don't do this type of work often enough to completely understand the software.
    Thanks!!!!

    Jber,
    And this is an attempt to give a (hopefully sufficiently) more complete description of the ellipse way, as an amendment of post #4 (overdoing silly things like this makes it difficult to remember to mention all the crucial steps that seem to hide somewhere in the fingers):
    One way that results in constant thickness tick marks might be to (using Stroke>Round Cap/Join or Stroke>Projecting Cap/Miter Join or Stroke>Butt Cap and Miter Join depending on the desired end shape and length, see below, with the layer expanded in the Layers palette, and Smart Guides are your friends, telling you when you when you are in the right spots):
    If you wish to have the tick marks follow an ellipse and at the same time have constant widths (two different widths), you may (see below):
    0) Lock the image of the dial (shown as a grey area below), you may place it at X = 0 to facilitate symmetric building;
    1) Create the thickest tick mark and move a copy to the right, then create a one step blend (Object>Blend Options>Specified Steps = 1, then Object>Blend>Make);
    2) Create the thinnest tick mark and move a copy to the right, then create a five steps blend (Object>Blend Options>Specified Steps = 5, then Object>Blend>Make);
    3) Either of two ways (in both cases make sure to make it as symmetrical as possible):
    3a) Create the midway ellipse, adjusting the top of it to be midway between the two arcs (this is the first way I thought of and the way shown below), or
    3b) Create two ellipses corresponding to the two arcs, then create a one step blend and Object>Blend>Expand to get the midway ellipse and delete the other two;
    4) Drag horizontally with the Line Tool (hold Shift) to make a path between the two spots where the midway ellipse crosses the ends of the dial image (Smarts Guides say intersect), or just create a horizontal path and place it so it crosses the ellipse in the right spots (you can see the symmetry here);
    5) With the horizontal path still selected Object>Path>Divide Objects Below;
    6) Delete the lower superfluous part of the ellipse, then with the Direct Seletion Tool click the horizontal segment and delete it (only click delete once);
    7) Select the remaining midway ellipse part and Object>Path>Offset Path, using half the height of the dial image (at the middle), you may retry until you have it right, this will recreate the top and bottom of the dial and also make ends;
    8) Select the midway ellipse part and Object>Path>Add Anchor Points a few times (see below), and copy the midway ellipse, now you have two on top of each other, one for each of the blends;
    9) Select one of the midway ellipses along with the thin blend from 2) (hold Shift to have them both selected) and Object>Blend>Replace Spine, this will make that ellipse part disappear;
    10) Select the other midway ellipse and the thick blend from 1) (hold Shift to have them both selected) and Object>Blend>Replace Spine;
    11) Hide/Delete the image dial.
    Now you should have the whole dial with both sets of tick marks on top  of the elliptic arch set. In 9) and 10) you may select on the Artboard or through the Layers palette (you can see what you are selecting in both places), and the order (and stacking order) in 1)/2) and 9)/10) can be changed.
    If you wish to move/extend the thick tick marks upwards or both up and down, you may:
    12) Select the thick ticks blend and Object>Blend>Expand, and then Select each of the thick tick marks and tick the appropriate Reference Point in the Transform palette (if you want to extend upwards use the bottom ones (Right for left, Center for centre, Left for right), if you want to extend both up and down use the Center one), then multiply the H value by the desired amount and click Ctrl/Cmd+Enter to make them a bit longer up/outwardly.
    The Object>Path>Add Anchor Points in 8) is to get a even distribution of the thin tick mark blend (not necessary for the thick tick marks blend because it only has one step).

  • How to create a table with editable column values.

    Hi everyone,
    I think this is very simple but i'm not able to find how to do this. This is my requirement. I need to create a table with n columns and 1 row initially. user should be able to enter data into this table and click of a button should insert data into the data base table. Also there should be a button at the bottom of the table to add 1 row to the table.
    I know how to do the insert to database, but can anyone please let me know how to create a table that allows user to enter data and how to create a add 1 row button?
    Thanks in Advance!

    Raghu,
    Go through the ToolBox tutorial Create Page & Advanced table section of OAF Guide.
    Step 1 - You require to create EO & a VO based on this EO. This EO will be of DataBase table where you want to insert the data.
    Step 2 - Create a Advanced table region. (Refer this Adavanced table section for more on this)
    Step 3 - Attach this VO in the BC4J component of Adavanced Table region.
    Regards,
    Gyan

  • How to create a evenly spaced grid of rectangles

    Ok Im having difficulty in creating 5x5 rectangles with rounded corners, which themselves have a specific height and width and the spacing (rows and columns) inbetween are evely spaced.
    How would i acheive this???

    Thanks for the replies.
    I had actually tried Steve Fairbank's method before posting this thread, however it would you would have to set the area and thw shape width seperately f.e. if i were to set the height and width and the spacing, the overall area wouldnt expand to compensate but rather stay the same, if i then increase the area it would mess up either the spacing or the width and height. Very Frustrating. a
    Anyway I have achieved what i wanted using Larry G. Schneider's method.
    I have one more question now at this point:
    Do you know how to manipulate the spacing between the shapes so that there is even spacing in the rows and columns between the shapes?? Doing this whilst using your method i found was hit and miss and i only got it roughly right.
    Thanks

  • How can you create an 'even-spaced' spiral?

    Is there a way or method to create the 'even-spaced' spiral with the spiral tool?  I've tried to using the Ctl+spiral tool but the inside is still too tight and the outside is too 'wide'.  I know I'm missing something here, I'd appreciate any info and/or help here.  The sample I've uploaded is almost what I'm looking for but without the 'ying-yang' look. Thanks in advance!

    cripeland,
    The free Archimedean Spiral script is downloadable (along with other nice free scripts) here:
    http://park12.wakwak.com/~shp/lc/et/en_aics_script.html#archimedes

Maybe you are looking for

  • When I boot my computer i get a message that says The Procedure entry point_NSConcreteStackBlock could not be located in the dynamic link library CoreFoundation.dll.

    When I start up my laptop I get an error message that says 'The Procedure entry point_NSConcreteStackBlock could not be located in the dynamic link library CoreFoundation.dll. I have tried to uninstall itunes and all its files, I have tried to instal

  • How can I print a text with my comments in Pages 5.0?

    I have made comments on a text in Pages 5.0.  How can I now print the file and have my comments included in the hardcopy?

  • Itunes to aiff

    Hello- I am making a final cut express video, and want to use an itunes song that I downloaded. I have tried importing it into MPEGStreamline and exporting it as an aiff file. It does it, but there is no sound. I also have quick time player pro as we

  • Unable to launch the APex 4.0

    Hi , While Installing i didnt get even a single error . I already had the Oracle XE and default apex 3.2 intsalled with it . Now i have moved from 10g to 11g , so i uninstalled the old apex using @apxremov.sql script Later i installed APEX 4.0 on 11g

  • Case, Decode or PlSQL

    Hello, I am new to Oracle. I have a, hopefully basic SQL question. There is sometime four users in my dbs. But, I would like make query where the users below are returned, even if not in db. 1. Bob 2. Jane 3. John 4. Abul I have rows in db: ROWS IN D