How do I correct the join in a dotted table stroke style?

I kept super organized when setting up my table styles this time. I set as many things as possible in the table setup, followed by cell styles for certain columns and certain rows (like subdividers). The problem with cell styles is that you can't set stroke styles BETWEEN cells, only around them. So if there's a setting to do this on the macro level, I'd be really happy. I always get issues with misapplied formatting when I apply too many styles or overrides, so that's what I'm trying to avoid.
Here's the problem: table styles are still treating my strokes on the individual cell level. I've been using dotted strokes in the columns, but there are no joins between rows. They're aligning to the top and bottom of each cell. See the gray lines in this example (blue dots are bullets, not strokes):
But when I override the column and re-do the stroke in the Stroke palette, they look as intended. Compare the highlighted cells (black) to the existing table style (white & light gray rows):
Is there a setting somewhere that I'm missing? Any suggestions besides manual override?
Note: I'm in CS6 on Mac 10.6, in case it matters.

I actually need the cell styles. That's what sets my font, spacing, and GREP styles.
I did find the solution today. In the table style or table setup, I needed to set the "Stroke Drawing Order" to "Column Strokes in Front". Even though it was previously set to "Best Joins" and I had no strokes for rows or for the table borders, it just wasn't giving priority to my dotted columns.
Thanks for your response though!

Similar Messages

  • HOW CAN U CORRECT THE DATA IN UR FILE WHICH CONTAINS 1 LAKSH RECS

    Hai Frnds,
    i Attend an interview they asked this questions can u know the answeres . tell me .
    In File to file scenario how can we reprocess records which failed records.
    HOW CAN U CORRECT THE DATA IN UR FILE WHICH CONTAINS 1 LAKSH RECS
    Thanks in advance
    thahir

    Hi,
    Refer these links:
    this might help you
    Generic Approach for Validating Incoming Flat File in SAP XI - Part 1
    Generic Approach for Validating Incoming Flat File in SAP XI - Part 1
    validating against schema file for the output XML file
    Informing the sender about bad records
    Regards,
    Nithiyanandam

  • How Can We Tune the Joins with "OR" Caluse ?

    Hi
    We've identified one Query in one of Our PL/SQL Stored Procedure which is taking huge time to fetch the records. I have simulated the problem as shown below. The problem Is, How can i tune the Jions with "OR" Clause. i have tried replacing them with Exists Caluse, But the Performance was not much was expected.
    CREATE TABLE TEST
    (ID NUMBER VDATE DATE );
    BEGIN
      FOR i IN 1 .. 100000 LOOP
        INSERT INTO TEST
        VALUES
          (i, TO_DATE(TRUNC(DBMS_RANDOM.VALUE(2452641, 2452641 + 364)), 'J'));
        IF MOD(i, 1000) = 0 THEN
          COMMIT;
        END IF;
      END LOOP;
    END;
    CREATE TABLE RTEST1 ( ID NUMBER, VMONTH NUMBER );
    INSERT INTO RTEST1
    SELECT ID, TO_NUMBER(TO_CHAR(VDATE,'MM'))
    FROM TEST ;
    CREATE TABLE RTEST2 ( ID NUMBER, VMONTH NUMBER );
    INSERT INTO RTEST2
    SELECT ID, TO_NUMBER(TO_CHAR(VDATE,'MM'))
    FROM TEST;
    CREATE INDEX RTEST1_IDX2 ON RTEST1(VMONTH)
    CREATE INDEX RTEST2_IDX1 ON RTEST2(VMONTH)
    ALTER TABLE RTEST1 ADD CONSTRAINT RTEST1_PK  PRIMARY KEY (ID)
    ALTER TABLE RTEST2 ADD CONSTRAINT RTEST2_PK  PRIMARY KEY (ID)
    SELECT A.ID, B.VMONTH
    FROM RTEST1 A , RTEST2 B
    WHERE A.ID = B.ID  
    AND ( (A.ID = B.VMONTH) OR ( B.ID = A.VMONTH ) )  
    BEGIN
    DBMS_STATS.gather_table_stats(ownname => 'PHASE30DEV',tabname => 'RTEST1');  
    DBMS_STATS.gather_table_stats(ownname => 'PHASE30DEV',tabname => 'RTEST2');
    DBMS_STATS.gather_index_stats(ownname => 'PHASE30DEV',indname => 'RTEST1_IDX1');
    DBMS_STATS.gather_index_stats(ownname => 'PHASE30DEV',indname => 'RTEST2_IDX2');
    DBMS_STATS.gather_index_stats(ownname => 'PHASE30DEV',indname => 'RTEST1_IDX2');
    DBMS_STATS.gather_index_stats(ownname => 'PHASE30DEV',indname => 'RTEST2_IDX1');
    END; Pls suggest !!!!!!! How can I tune the Joins with "OR" Clause.
    Regards
    RJ

    I don't like it, but you could use a hint:
    SQL>r
      1  SELECT A.ID, B.VMONTH
      2  FROM RTEST1 A , RTEST2 B
      3  WHERE A.ID = B.ID
      4* AND ( (A.ID = B.VMONTH) OR ( B.ID = A.VMONTH ) )
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=94 Card=2 Bytes=28)
       1    0   TABLE ACCESS (BY INDEX ROWID) OF 'RTEST2' (Cost=94 Card=1 Bytes=7)
       2    1     NESTED LOOPS (Cost=94 Card=2 Bytes=28)
       3    2       TABLE ACCESS (FULL) OF 'RTEST1' (Cost=20 Card=100000 Bytes=700000)
       4    2       BITMAP CONVERSION (TO ROWIDS)
       5    4         BITMAP AND
       6    5           BITMAP CONVERSION (FROM ROWIDS)
       7    6             INDEX (RANGE SCAN) OF 'RTEST2_PK' (UNIQUE)
       8    5           BITMAP OR
       9    8             BITMAP CONVERSION (FROM ROWIDS)
      10    9               INDEX (RANGE SCAN) OF 'RTEST2_IDX1' (NON-UNIQUE)
      11    8             BITMAP CONVERSION (FROM ROWIDS)
      12   11               INDEX (RANGE SCAN) OF 'RTEST2_PK' (UNIQUE)
    Statistics
              0  recursive calls
              0  db block gets
         300332  consistent gets
              0  physical reads
              0  redo size
            252  bytes sent via SQL*Net to client
            235  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              2  rows processed
    SQL>SELECT /*+ ordered use_hash(b) */ A.ID, B.VMONTH
      2    FROM RTEST1 A, RTEST2 B
      3   WHERE A.ID = B.ID  AND(A.ID = B.VMONTH OR B.ID = A.VMONTH)
      4  ;
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=175 Card=2 Bytes=28)
       1    0   HASH JOIN (Cost=175 Card=2 Bytes=28)
       2    1     TABLE ACCESS (FULL) OF 'RTEST1' (Cost=20 Card=100000 Bytes=700000)
       3    1     TABLE ACCESS (FULL) OF 'RTEST2' (Cost=20 Card=100000 Bytes=700000)
    Statistics
              9  recursive calls
              0  db block gets
            256  consistent gets
            156  physical reads
              0  redo size
            252  bytes sent via SQL*Net to client
            235  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              2  rows processed

  • I recently updated the software on my MacBook Pro. Now, my computer no longer recognizes my external hard drive. Could this be related to the software update and, if so, how do I correct the problem?

    I Recently updated the software on my MacBook Pro. Now, my computer no longer recognizes my external hard drive. Could this be related to the software update and, if so, how do I correct the problem?

    Ari343 wrote:
    No, the external hard drive does not show up on Disk Utility. I don't have another computer to try it on.
    Perform a PRAM reset:
    http://support.apple.com/kb/ht1379
    Have you tried all the ports?
    Have you tried with a different cable?
    Have you tested all the ports with other devices to see that they are functioning?
    Ciao.

  • How do you correct the merging of contacts, calendars, etc with other members of your family on your account?

    How do you correct the merging of contacts, calendars, etc with other members of your family on your account?

    Wow!
    I'm not going to be of much use regarding answers but I sure am going to watching this post like a hawk for any replies. My package is a slightly diluted version of this and I do find the BBtalk and data limits hard to make the most of as well.
    If nothing else this totally highlights how complicated BT have managed to make their packages.
    A cynic would assume that they are trying to catch us out at every step and for us to either be overspending or not really getting the moneys worth.

  • How do I correct the error: adobe acrobat 9 distiller can not find its standard icc profiles.

    How do I correct the error: Adobe Acrobat 9 distiller can not find its standard ICC profiles. Please reinstall adobe acrobat to correct this problem?
    I have tried all the suggestion in the forums. But I keep getting the error. I reinstalled AA9 Pro and downloaded the updates. But I keep getting the error.
    I recently upgraded to Windows 7.

    You have permissions issues on the respective folders, e.g. Windows\System32\Color and so on. Fix them and allow all apps to access the contents.
    Mylenium

  • I've just imported photos that are misdated and appear out of order in my events. How can I correct the dates on these events so they appear properly?

    I've just imported photos that are misdated and appear out of order in my events. How can I correct the dates on these events so they appear properly?

    The one iin the Photos ➙ Adjust Date and Time menu option:
    checkbox below:

  • Why do I get and how do I correct the message _ This video is only available in the US - when I am in the US - I am trying to view Downton Abbey on my Ipad using the PBS app.?

    why do I get and how do I correct the message _ This video is only available in the US - when I am in the US - I am trying to view Downton Abbey on my Ipad using the PBS ipad app.? Thanks for your help

    Privacy is an Option in the Settings App, its not in Safari as that applies only to Safaris browsing.  Its called Privacy in  IOS 6  In previous versions the same thing can be found under Location Services.

  • How can I correct the position of the text in TEXTITEM?

    In TEXTITEM Box, some texts are placing on the top.
    The forms version is 6i.
    How can I correct the position of the text in TEXTITEM?

    Hi
    good thread to this problem
    Vertical justification for Text Item
    Thanks
    asp

  • How do i correct the phone number in iMessage on iPad air

    how do i correct the phone number in iMessage on iPad air

    Sign out of iMessage on your iPad. Sign out on your iPhone. Sign back in on your iPhone. Once it's completely signed back in, sign back in on your iPad using the same Apple ID.

  • How do I correct the "Blocked Plug In" message I receive on Safari?  I can't watch videos, etc.  Thanks!

    How do I correct the "blocked plug in" message that I receive on Safari?  I am no longer able
    to view videos, etc. because of the blocking.  Thank you for any help.

    If you still get a ‘plug-ins blocked’ message:
    http://support.apple.com/kb/HT5271

  • How can I correct the error Write Permission Open so that I can finalize a project in I Movie?

    How can I correct the error Write Permission Open so that I can finalize a project in I Movie?

    Post in the iMovie forum.

  • TS2446 How can I correct the spelling of my security questions

    How can I correct the spelling of my answers to security questions

    Try the following :
    go to appleid.apple.com using a browser.
    Click "Manage your account"
    sign in to your account
    on the left-hand side of the screen that you are taken to click 'Password and Security'
    You should then be asked to answer 2 of your 3 security questions, after which you'll be able to correct them.
    If you can't remember how you spelt their answers then if you have a rescue email address on your account (which is not the same as an alternate email address) then you should see a send reset info link under the 2 questions that you are asked. If you don't have a rescue email address then see if the instructions on this user tip helps : https://discussions.apple.com/docs/DOC-4551

  • I've recently downloaded CS4 ( Illus. Photoshop, and Indesign) on my Mac Book pro. Only these apps appear as low resolution. All other imagery, text etc... appear fine on my system. How can I correct the pixelization of the Adobe products?

    I've recently downloaded CS4 ( Illus. Photoshop, and Indesign) on my Mac Book pro. Only these apps appear as low resolution. All other imagery, text etc... appear fine on my system. How can I correct the pixelization of the Adobe products?

    No. If you want full compatibility with that display for all Adobe apps you’ll need to move to Creative Cloud.

  • I keep getting an error -54 when attempting to back up and restore. How do I correct the issue?

    I keep getting an error -54 when attempting to back up my 4S and restore to my new 5S. How do I correct the issue?

    Can you try again with Firefox 4.0b8 (desktop) and 4.0b3 (Android)? We have changed the way that Sync setup works, and it no longer requires entering the password and sync key by hand.
    For details, see: http://blog.mozilla.com/services/2010/12/22/easy-setup-for-firefox-sync/

Maybe you are looking for

  • Problem with Syncronus senario in AAE

    HI , I am working on SOAP to Proxy  syncronus senario in SAP PI7.1 using AAE (Intigrated configuration ,But i am getting the error as follows SOAP: call failed: com.sap.engine.interfaces.messaging.api.exception.MessagingException: SOAP: response mess

  • Usb ports loosing power?

    sometimes i will be working on the mbp and my usb ports will just stop working. It is like all of the sudden they have no power, and the only thing that seems to help is restarting the computer. Has anyone else had a similar issue with this or know w

  • Creating / updating Custom infotype with different screen

    Hi All, I have created custom infotype having different screen for different subtype(1,2). From Subtype 1, indotype is automatically updated as it is a standard program. But for subtype 2 i am using HR_INFOTYPE_OPERATION for updating the record which

  • Picking the correct vendor for purchase requesition

    Hello We have done a carv out of an system for a client and they have abandond SRM and MDM. since the new company only are using one catalog, all of these materials are established as standard material master. But there is a small problem, when we ar

  • MSO image sequence issue

    Hello, I've been having some issues with some MSO image sequences in my article. I have a few autoplay MSO image sequences that works perfectly in the desktop viewer, but won't seem to play on the iPad. I have Adobe Content Viewer v32.4.2. The weird