A GREP style not holding in CS4

Hi,
OK...I have been playing with a bunch of these GREP searches in CS4 where I can put them in as a stylesheet.
I have a character style that is called superscript, that automatically makes a ® superscript when it is typed, and that is working fine.
Then I added my lookahead for any TM or ® to add a 100 tracking in between the letter and the tm or ®. It does it if I have the type in the box and apply my style to the whole box. But, if I go in and make changes to the text, the ®-superscript automatically happens when I type a new one, but the tracking doesn't automatically happen. What's worse is, if I select the text and try to apply the style manually, it still doesn't not apply the 100 tracking. I have to make it a basic or none style and then re-apply the good one.
If it is in the GREP style of the paragraph style, shouldn't it do it dynamically?
Here is my image.
thanks!!
babs

The only object I know of you can create an InDesign and specify whether it prints or not in the PDF is a button. That would definitely NOT work with character styles.

Similar Messages

  • Why do styles NOT hold their font size?

    I've learned how to set styles and am now applying them to a document, but I've noticed that the font size is not holding. I'm using Cochin in 10 point for a section that is two columns of text with some poetry lines here and there. I've checked the styles to make sure font size is set, but the paragraphs slip into 11 and don't hold at 10.
    Now that I'm committed to using Pages instead of Word for this book project, I hate being bogged down by this problem. Any suggestions welcome/
    Pam

    There are several types of styles, character, paragraph and list styles. Paragraph styles effect the whole paragraph. Character styles effect only the selected text.
    It sounds as if you are looking for character styles:
    • Select the text that is in the format you wish to emulate.
    • Open the styles drawer and click and hold down the plus sign until the choice between character and paragraph styles appears. Choose 'create character style from selection' and save it in the name you wish.
    To apply a character style, select some text and click on the character style you created. You can change styles like this within a paragraph.
    Kurt

  • IDCS5/MAC - GREP Style to uppercase a letter after a dash between words

    G'day there.
    I'm trying to create a GREP style to uppercase a letter after a dash between words, more specifically where one word starts with a capital and the one after a dash does not e.g. Lorem-ipsum = Lorem-Ipsum
    The full story is that there is a standing indesign file used over and over again which data-merges surnames which are in a massive database. The data arrives in uppercase and our mail barcoding software allows us to Title Case certain fields, but the Title Case behaviour has the following results:
    * McLeod = Mcleod
    * D'Agostino = D'agostino
    * Smith-Bunting = Smith-bunting
    i've been able to solve the McLeod = Mcleod problem with the following GREP style:
    (?<=Mc)\l
    and then apply a character style which is nothing more than All Caps.
    similarly, i've been able to solve the D'Agostino = D'agostino problem:
    (?<=\u')\l
    and once again apply the All Caps style to the affected letter. This also solves the O'leary problem to O'Leary.
    However, when I try these GREPs to grab the Smith-bunting style issues:
    (?<=\u\l+?-)\l     or   (?<=\u\l{2,}-)\l
    the search won't work, nor will it work with regular Find/Change GREP replace... yet the expression \u\l+?-\l will find the block that i'm after.
    I could use the search
    (?<=\l-)\l
    and this will find Smith-bunting = Smith-Bunting... but will also find co-operate = co-Operate (will find two words joined with a dash but  starts with a lower case letter).
    This is fine if the para style is applied to the  line in the address block containing the client's name, but if the name is referred to in a block of text, then that block of text has to have the para style with the GREP style applied, and any dashes between words in that para behave the same way as the name.
    yes, it is possible to go into excel and use the =PROPER(affected cell) and fix the Smith-Bunting fields, but i'm trying to create a solution which will work solely in InDesign so that other operators in the office (who aren't familiar with excel) can simply open the standing file and dump in the txt database generated by the mail barcoding software.
    there are other names that the mail barcoding's title-case fouls up i.e.
    * MacLeod = Macleod
    * van der Graaf = Van Der Graaf
    * van Diemen = Van Diemen
    but a GREP to make Macleod become MacLeod may foul up Mack, Mackie or Macy to become MacK, MacKie or MacY.
    I also know that a GREP for the van der or van won't work as the style will only force letters to become All Caps, not uppercase to lower...
    Ultimately...
    does anyone know a way to GREP style (not a find/change GREP) a fix for Xxxxx-xxxxx = Xxxxx-Xxxxx?
    Colly
    Colecandoo.

    I agree with Haakenlid on his Dirty-Workaround view -- I feel data should be entered the way it oguht to, not altered by some magic GREP styling -- but then again I can also sympathize with your POV re: a fire-and-forget solution even your dumbest operator can't miss.
    Oh the rigors of life.
    If you are totally, absolutely certain you want to do this by GREP, use this:
    (a) Set a To Capitals character style to the string
    \b\u\l+\-\l
    -- this will magically transform "Hon. Lt. Sir John Forsythe Blunt-object" into "BLUNT-Object".
    (b) Then override ( ! ) the first half again with another character style that removes the To Capitals attribute ( ! ):
    \b\u\l+-(?=\l)
    Notice how this expression is exactly the same as the above one, except for the very last code -- the next lowercase must also be caught, but now using a lookahead so its formatting won't be affected.
    This removes the All Caps override from the first halve, changing it from "BLUNT-Object" back to "Blunt-Object".
    Lots of side effects, I'm sure. Perhaps it is safer to teach your operators to run a single script.

  • Grep Styles - Conflicting - "^" not working in lookbehind and more

    Hi,
    Still fighting my way in the jungle of paragraph grep styles.
    In InDesign CS5 by the way.
    I import text from DB and they all come in the same.
    I need to use the same paragraph style to all paragraphs.
    I really don't want to use find-change since that would mess up the xml holding the data.
    Example-text explanation:
    • All sizes are separated by ", - "
    • …… = tab
    • Not all rows have tab
    • Sizes can be both numeric, letters, contain "/" and "-" and """ and " " (space) and yes indeed a "," comma!! (and every other idiotic combination you culd think of.)
    • When only 2 posts in a row - should be separated by a ", " = (Comma-space)
    • When more than 2 posts i a row - all posts but first and last should be hidden and separated by " - " (space-dash-space)
    I have tried numerous combinations to get them all but they always conflict with each other.
    Bugger!
    I really shouldn't be impossible.
    Is it possible in Paragraph grep styles to "catch" "any character but these" and kind of make a character-set like [!not this character]   (= [!a|b|c]  )
    Is it possible to count the number of posts in a row? ( like... if more than 2 then hide...bla bla)
    All sizes are separated by the same ", - " and sometimes I want to hide them, and somtimes I want to use one of them...
    Is there any kind of "if-else" thing that can be used??
    My original idea was to be able to catch them by using ^-combinations for beginning of paragraph and matching with tha linebreak and tab but it seems as if that don't always work when using positive or negative look-behind-ahead.
    Oh, I'm blabbering. Sorry.
    Any hints or pointers would be greatly appreciated.
    /K
    A) Got this - Original text
    Same text but this is my Goal!
    134/140, - 146/152, - 158/164……….299,-
    134/140, - 146/152……….299,-
    38, - 40, - 42, - 44, - 46……….399,-
    38, - 40……….399,-
    XS, - S, - M, - L, - XL……….399,-
    XS, - S, - M, - L
    XS, - M
    XS, - S, - M, - L, - XL……….399,-
    B 70, - 75, - 80, - 90, - 95……….199,-
    B 70, - 75……….199,-
    Medium-Wide 17”, - 17,5”……….995,-
    Normal, - X-Wide……….999,-
    16 mm 95, - 105, - 115, - 125, - 135, - 145…......99,-
    16 mm 95, - 105……....99,-
    134/140 - 158/164……….299,-
    134/140, 146/152……….299,-
    38 - 46……….399,-
    38, 40……….399,-
    XS - XL……….399,-
    XS - L
    XS, M
    XS - XL……….399,-
    B 70 - 95……….199,-
    B 70, 75……….199,-
    Medium-Wide 17”, 17,5”……….995,-
    Normal, X-Wide……….999,-
    16 mm 95 - 145…......99,-
    16 mm 95, 105……....99,-
    GrepStyle
    Result wanted
    ,\s(?<=,\s)-\s.+(?=\s-)
    Red undelined text will be hidden
    (Got this)
    134/140, - 146/152, - 158/164……….299,-
    134/140, - 146/152……….299,-
    38, - 40, - 42, - 44, - 46……….399,-
    38, - 40……….399,-
    XS, - S, - M, - L, - XL……….399,-
    XS, - S, - M, - L
    XS, - M
    XS, - S, - M, - L, - XL……….399,-
    B 70, - 75, - 80, - 90, - 95……….199,-
    B 70, - 75……….199,-
    Medium-Wide 17”, - 17,5”……….995,-
    Normal, - X-Wide……….999,-
    16 mm 95, - 105, - 115, - 125, - 135, - 145…......99,-
    16 mm 95, - 105……....99,-
    Need this to not conflict with other grep
    blue underlined text needs to be hidden.
    134/140, - 146/152, - 158/164……….299,-
    134/140, - 146/152……….299,-
    38, - 40, - 42, - 44, - 46……….399,-
    38, - 40……….399,-
    XS, - S, - M, - L, - XL……….399,-
    XS, - S, - M, - L
    XS, - M
    XS, - S, - M, - L, - XL……….399,-
    B 70, - 75, - 80, - 90, - 95……….199,-
    B 70, - 75……….199,-
    Medium-Wide 17”, - 17,5”……….995,-
    Normal, - X-Wide……….999,-
    16 mm 95, - 105, - 115, - 125, - 135, - 145…......99,-
    16 mm 95, - 105……....99,-

    There are error messages in the errorconsole.<br>
    Firefox ignores the css rules because there is a syntax error at line 18:<br>
    -->> table.heading {{background-image:url('barline.jpg');<br>
    please remove one of the opening brackets here<br>
    You can go to Mozilla Developer Network to learn CSS.<br>
    https://developer.mozilla.org/en-US/learn/css<br>

  • Why not there a "Find/replace in Grep style" inside the Para style?

    Whenever I type a digit in my text, it should be colored red as per style. I do this by grep style inside the para style, but now I need to insert brackets before and after of the digit(s), i realize that there is no replace option in grep style in the para style. Why not it be there a "find/replace" instead "find" only as it now appears?

    Ya, this is simple, finding a specific para style with digit and change them, when the book in first pass. But while in the correction pass of the same book, whenever we are inserting more text into the document, there are chances to be unaware of the digit style that, it should be surrounded by brackets, and it happened earlier so I have a thought of it. Again, while paginating a book having more than 350 - 600 pages, and 3 to 4 guys working in it, I think this may work.
    Expecting your valuable comment on this.
    Thangaraj Mohan.

  • Create a GREP-Style with script? [AS] [CS4]

    Hi
    I'm trying to ad a grep-style to a paragraph style.
    It's easy to read/write properties from one that already exists but how can I create a new one?
    This is in applescript, CS4
    rgds /Mattias

    Yep, know about Nested Grep Style.
    In AS it:s http://www.indesignscriptingreference.com/CS4/AppleScript/nested-grep-style.htm
    If I have a P-style in a document, with a nested grep style applied. I can read and write to that grep style by calling it:
    nested grep style 1 of paragraph style "myParaStyle"
    read: grep expression of ... -- -- -- -- -- -- -- Where ... is the above line
    write: set grep expression of ... to "xyz"
    However, if the P-style doesn't have a nested grep style applied, I can't find a way to create/insert one into the P-style.

  • Writing Style check with Grep styles

    Here is an idea.
    I make dozens of differents books and journals, and each one has its own editorial pecularities -- some want their quotes double, others single, some want "e-mail" while others insist on "email", or no specific text before an email address. Lots of little things, and I always list as much as possible on the pasteboard -- but of course I have to check these items myself.
    Would it be useful if the user was able to put these "rules" in the GREP Style manner into your document (or template!), where it would not mark the found text with a style, but rather with a Spell Check wiggly? (Which, of course, then would need to be picked up by Preflight.)

    Well, yeah, but in that sense it's not that different from other stylesheets I have. (For all journals I make, I have at least one "current" updated template.)
    One could in general add stuff like this:
    \dC (?# wrong -- it should be [digit]°C)
    \doC (?# with a superscript 'oh' -- wrong)
    \d °C (?# with a space -- wrong)
    \d° C (?# space on the other side, also wrong)
    \dºC (?# masculine ordinal rather than degree -- also wrong!)
    An advantage over a warning wiggly line, rather than just putting all possible variants into the FindChangeList, is that you can always ignore the wiggly -- just like you do when a spell check tags potentially bad spelling (oh okay, "Peter Spier" does not get tagged, but "Jongware" does!).
    But I'll forgive Adobe if they can't find the time to squeeze this into CS5, somewhere in the next (hold on--) 05d:23h:32m:07sec.

  • Script that worked in CS does not work in CS4 - multiple open page, print , pdf export and close

    I had a script that worked great for me in Indesign CS. But now does not work in CS4. Anyone knows what needs to be done to make it work again ?
    When I drop folder with indesign files on top of this script:
    1. opens first page
    2. turns specific layer on
    3. prints using preset
    4. exports using preset
    5. close without saving
    6. next page
    Anyone who can give me solution or idea how this should work is greatly appreciated.
    on open sourceFolders
    repeat with sourceFolder in sourceFolders
    tell application "Finder"
    try
    -- If you would like to include subfolders, you say - every file of entire contents of folder…
    set idFiles to (every file of folder sourceFolder whose file type is "IDd5") as alias list
    on error -- work around bug if there is only one file
    set idFiles to (every file of folder sourceFolder whose file type is "IDd5") as alias as list
    end try
    end tell
    if idFiles is not {} then
    tell application "Adobe InDesign CS4"
    set user interaction level to never interact
    repeat with i from 1 to count of idFiles
    open item i of idFiles
    tell document 1
    try
    set visible of layer "ImagesTag_Layer" to true
    end try
    set myPreset to "letter size" -- name of print style to use
    with timeout of 700 seconds
    print using myPreset without print dialog
    end timeout
    set myPreset1 to "pdf preset name" -- name of pdf export style to use
    set myName to the name -- name includes .indd should remove at some point          
    with timeout of 700 seconds
    export format PDF type to "users:temp:Desktop:pdf:" & myName & ".pdf" using myPreset1 without showing options -- set path here format ComputerName:Folder1:Folder2:......:FileName.pdf
    end timeout
    close without saving
    end tell
    end repeat
    set user interaction level to interact with all
    end tell
    end if
    return 10 -- try again in 10 seconds
    end repeat
    end open

    (Disclaimer: me not an AS guy!)
    First thing I noticed is the interaction level is set off. If you comment out this line
    set user interaction level to never interact
    you might be able to pinpoint the exact error -- ID will display a standard "failed" dialog, hopefully showing the line that it fails on.
    A quick question: the script assumes two presets in your InDesign: one for print ("letter size") and one for PDFs ("pdf preset name"):
    set myPreset to "letter size" -- name of print style to use
    set myPreset1 to "pdf preset name" -- name of pdf export style to use 
    Do these actually exist in your CS4, with the same (non)capitalization and spaces?

  • How do I apply a grep style to the plus (+) sign?

    I was able to apply a grep style to the minus and equal sign, but not the plus sign "+".  It appears the plus sign means 'apply to all' in the grep style box.  Can some assist me with this? Thanks in advance.

    Thank you. It worked perfectly.

  • Transferring Windows Photoshop CS2 web photo gallery styles in Mac Photoshop CS4 web photo gallery

    Hi,
    My name is JatinderPal Singh. I'm migrating from Vista to MAC and before I purchase the upgrade from Photoshop CS2 and Photoshop CS4 I need to know that can I continue to use my existing web photo gallery styles in CS4 after installing the add-on feature. Because I know web photo gallery is not default in CS4. We need to manually add this feature. I hear from other photographers that  this is a problem. Can you please confirm that this is possible

    Check this out:
    http://blogs.adobe.com/jnack/2009/04/a_few_useful_reminders.html
    Remember to install the Picture Package too.
    Additionally, make sure you have updated to Photoshop 11.0.1 and applie the update to AOM, the Adobe Output Module.

  • Attempting to create a GREP Style

    I'm trying to make a GREP style for one of my paragraph styles, that will take the text from the beginning of a line until a colon and set a character style to it to bold that part.
    Example:
    Step 1: Take bread
    Step 2: Take peanut butter
    Step 3: Spread peanut butter on bread
    I don't think I've been getting the syntax right.  I've put ^\:~h and ^:~h into the 'to text' box, thinking this meant "Beginning of line until the character ':' and end" but neither of those have given me the results I want.  Thanks in advance for the help!

    Prismatus wrote:
    Your response worked for me.  I had tried using a wildcard before the ones I posted, but only put the . in, assuming it would cover more than just one character.  I assume the +? covers all characters until the colon shows up, yes?
    No, it's slightly more complicated than that (sorry!). By default, GREP is Greedy -- that means, if you use this
    ^.+:
    GREP will think that the Any Character wildcard may be repeated as much as possible (that's the '+') before it needs to match the colon. What this means is that it will work just as you expected for
    Step 1: This is a single line.
    but will go out of its mind with this
    Step 2: what will happen now? Well, contrary to what you were expecting, the entire line will be marked bold, all because everything up to the very last : will be matched!
    The bold bits accurately shows what happens! Another example would be this:
    \d+
    which for a string of "123" will not match just the first digit, then the second, then the third, but all of them in a single long go. By default, GREP will grab as much as it possibly can.
    Adding a question mark behind the "Repeat Me" character reverts this behavior to Non-Greedy behavior, and as such GREP will match as little as humanly possible:
    \d+?
    will then match just the "1" in "123".
    Prismatus wrote:
    I also like the be literal part, but I was wondering what you would have instead of \d if you had more than nine steps, or if you had substeps (1a, 1b, etc.).
    That's just a case of adding more specifiers. To match one or more digits, you need this:
    ^Step \d+:
    The '+', again, will allow a repetition of the "digit" code. In this case you don't have to add a question mark, because there is no way this could run out of control; first, it will only match digits, and second, these digits must be followed by a colon.
    And if you may or may not have a single lowercase character following the digit (but still before the colon), you'd use the Any Lowercase Character code and the Zero or Once repetition specifier:
    ^Step \d+\l?:
    (that's a lowercase ell.) You see the question mark meaning Something Entirely Different here? It's only a Non-Greedy marker when immediately following another repetition code, one of these
    * (zero or more)
    + (once or more)
    ? (zero or once)
    {4,8} (or any other set of numbers -- this is at least 4 and at most 8 times)
    Uh, by the way, that makes this
    abc??
    a valid GREP. It will match "ab" or "abc", and then always select the shortest possible match of these two, which is then the "ab" one. ... Uh. I'm pretty sure this may be useful, some time in the future.

  • Creating a GREP style Help Needed

    I would like to set-up a style using GREP expression(s) that would do the following:
    Everything preceding an em dash (including the em dash and two spaces after the em dash) would be set to bold-italic, AND everything in the paragraph that begins with the word "NOTE:" until the end of the paragraph would be regular-italic.
    Here is a sample of the kind of text I want to format with one style:
    OPERATOR PANEL - The operator panel is located on the right-hand electrical enclosure. NOTE: Not all equipment will have the same operator panel. Refer to schematics for additional information.
    "OPERATOR PANEL - " would be all bold (or bold italic). The body text is regular. the "NOTE: Not all .... " to the end would be regular-italic.
    Any help or direction to a web-site with examples would be appreciated.
    Thanks in advance.
    RPP

    It's easier than you think.
    Peter's suggestion of a regular nesting style might work, except that it's
    i always
    applied to each paragraph you apply it to. That's just what the Grep styles are for:
    i conditional
    stuff.
    The 1st half: Apply Style: Bolded To Text: ^.*? ~=
    (there should be another space after the '=')
    The 2nd half: Apply Style: Italicized To Text: NOTE:.*$
    These are both pretty much basic GREP expressions -- except for the "~=", that's Adobe's --, so just about any google to a GREP repository can explain them. I already knew the basics, but
    this page taught me some new tricks.

  • CS5 - Grep style problems

    Where I work the treatment of the type is to reduce the size of all-caps, a string of numbers, or a combination of the two. For years they've been doing it by setting up a Character Style for each Paragraph Style (e.g., "Body smaller" for "Body), and then also alternate Character Styles if the text already has a Character Style applied to it ("Body Red Italic smaller" for "Body Red Italic"). You can imagine this quickly becomes a lot of styles.
    So I thought with CS5 Grep styles I could set this up in the Paragraph Styles. I want the Grep style to apply a Character Style that is nothing but a Horizontal and Vertical scale of 95%.
    The types of things I'm wanting Grep to find are below. But I'm only wanting to apply the style to the letters and numbers and not the punctuation.
    AAA
    B23
    33,333
    4,444,444
    U.S.A.
    (ABC-1)
    I went at writing this a piece at time, so it is not very elegant. Here's what I have:
    \d{2,}|\u{2,}|\u+\d+|\d+\u+|\d+[[:punct:]]\d+|\u+[[:punct:]]\u+|\u+[[:punct:]]\d+|\d+[[:pu nct:]]\u+
    This does a pretty good job, with a couple of problems.
    1) It is "catching" (applying the character style) to the first punctuation if there is a single character before it (e.g. the first piece of punctuation in 4,444,444 and U.S.A.)
    2) It is not always "catching" instances where there are more than three sets of numbers/caps in an item (e.g. U.S.A., it doesn't style the "A"). I know Grep is probably just doing what I'm telling it to do, but I can't see how to fix it.
    I would appreciate any help anyone could give me.
    Thanks.
    Tom

    You can't do all this in one GREP style. The one you came up with is already difficult to read, so you can imagine what happens to its readability by the time you get it to work. Apart from that I don't think it's possible to do what you want in one expression.
    So you really need to split up your task into several chunks, all of which you can then add to the same paragraph style. Your expressions may be more efficient, but they're much eaier to understand and maintain. Here goes.
    The easy ones are AAA, B23, and (ABC-1), all of which are captured by this expression:
    \(?\u[-\u\d]+\)?
    U.S.A. is more tricky, and it needs to be split in two itself. The first part captures series capital+period, but not the last one:
    \u(?=\.\u)
    Capturing the last capital+period is interesting in that it requires a negative lookahead embedded in a positive lookahead, which I wouldn't have thought was possible, but it works:
    (?<=\.)\u(?=\.(?!\u))
    For the numbers you's do something similar.
    Peter

  • Apply grep style only once

    I can't get my brain around what is probably a very simple problem: I want a paragraph style that applies boldfacing to any character up to an including the first colon in a paragraph. If I used  a nested style "through 1 :" the whole graf is bold if there is no colon. So that's out.
    A grep style ".+: " seems to work in most cases, but if there's a second colon, the boldfacing is extended to that point. What I think I want is a grep style that works "zero or 1 times" but I cannot figure out how to use the ? to make that happen.

    @Jongware – I think Robert wants to limit the GREP style to the first line of a paragraph.
    But unfortunately GREP in InDesign does not know about line endings.
    In scripting we could do something like what he wants, but comes with some obstacles, because the GREP will apply a character style, that will probably change the line ending. A very dynamic situation…
    Example 1
    Basic situation:
    This is my text here comes the colon: and
    here another one: that Robert don't like
    to take into account using the GREP style.
    Formatted after  the GREP style is applied:
    This is my text here comes the colon: and
    here another one: that Robert don't like
    to take into account using the GREP style.
    As I understand it, in case that the first colon will leave line one, only the first line should be formatted like this:
    (Case 1)
    This is my text here comes the first
    colon: and here another one: that
    Robert don't like to take into account
    using the GREP style.
    Or should it be, that the style should only be applied, if it's in the first line?
    (Case 2):
    This is my text here comes the first
    colon: and here another one: that
    Robert don't like to take into account
    using the GREP style.
    But what, if the colon in the basic case is at the end of line 1 and will be shifted to line 2 after formatting?
    What should happen then?
    That is simply not possible to format automatically (dynamically) using GREP styles in InDesign.
    Uwe

  • GREP STYLE, find/change

    Hi!
    My problem is..
    I got these numbers:
    17
    31.9
    32.9
    15
    in a table/cells. They need to have an .00 and 0 like this:
    17.00
    31.90
    32.90
    15.00
    I can use this one for that: find: .$  change: $0.00 but then the numbers with 31.9 gets the .00 also.. 31.9.00
    Any grep styles for that? multiple functions in the same style`?

    A grep style can't change text for you; it can only apply a style to text that matches whatever pattern you set.
    I don't think there any one search/replace that will get you where you want to go, but I was able to do it using two search and replace strings:
    ^\d+(?!\.)\b
    $0.00
    Finds any number of digits at the beginning of a line, that does NOT have a period following it, and returns the same number with ".00" appended.
    ^\d+\.\d\b
    $00
    Finds the remaining instances that have a period and only one digit after it, replaces it with the found text with "0" appended.
    This will not touch anything that has a number that has two digits after the period, like 12.95.
    Give it a try on a copy of your document, see if it does what you need. Depending on how your document is set up, and what other text is in it, you might also want to highlight the table (or just the relevant columns) and restrict the search to the selection rather than the whole document.

Maybe you are looking for

  • Oracle EBS R12 implementation scenarios

    Dear All, We have below 3 different scenarios, please give your comments/suggestions; keep in mind client wants cheeper solution. HP DL580 G5 servers will be used with 64bit Redhat Linux 5.0 on all scenarios. Scenario 1:) Oracle EBS R-12 implementati

  • Performance Assistant Long text Corrupt in NW04s BI

    Hi all, after installing SAP Netweaver 2004s SP08, I have experienced problems in displaying message longtexts. in all the place One example for the characters that get displayed instead of the correct longtext: This is Unicode code BI ABAP + JAVA sy

  • Link to DPS article after animation has played?

    Hi, Is it possible to link to a DPS article using a trigger command (or after a delay, or anything similar) without the need for a second click once an animation has finished? Currently I have a short animation that will play when pressed and I would

  • How can I change a brush stroke after it is drawn?

    I cannot make good pen lines with a thick stroke. It gets all out of wack. Is it possible to make my lines and change them afterwards?

  • Predefined Performanace Management Process Timeline Error

    Hi All, While running the Configur performance management process wizard in Define Templates for Predefined Performance Management. I am getting the below error. Error when processing your request What has happened? The URL http://sapcv2demo.ssdomain