Is it possible to use wildcards to match cell contents in an if statement?

I need to return a ID along with some other information on a page by page basis, so that the information comes out linked by position.  I use a couple of loops and if statements to navigate through the document.  I am able to use exact matches of cell contents which is fine when the contents doesn't vary.  But the IDs, though they have a similar pattern, are all different. In a menu driven search, I am able to find what I need with '150^9^9^9^9^9-^9^9^9' But when I try putting this (or any number of [0-9], *, ? combinations) it fails.  Is it possible to use wildcards?  The symbol used for the match (==) makes me suspect that it is not possible and that only literal, exact matches will work.  But I wanted to check with the experts before giving up.
Thanks
pcbaz

Thanks for the input.  You're right, a GREP search is much more efficient.  But what I'm trying to do and the circumstances here don't allow me, I think,  to go that route. I am trying to generate a list of values coming from several textframes on a single page and have them come out so that I can tell which values belong together.
I'm using an inherited document with masters that were created 'manually';  the index numbering for textframes and tables is random. I navigate through the pages, looping through textframe indices asking ' does this textframe exist?' If so, I ask if it is a table -- if no, it is a simple textframe and I ask about the ID, if yes, I ask if the contents of cell (0,0) (invariant position and contents) are equal to the table I want..  I am sending the ID and other pieces of information from the table to one row of a new table on a new page.  So the ID and other information from a single page are linked by being in the same row.
I know this a little 'off-normal' -- I'm using the search to navigate through the document and find things by location the way you do with a spreadsheet.  I have devised a work-around that helps me get around the fact that the ID is not invariant.  I create a list of the (exact) IDs from another document, equating them to a variable ('a').  I then loop through the list of IDs and ask if the contents of the textframe is equal to 'a'..This works o.k, unless there happens to be an extra space, a different kind of hyphen, etc. It would be so much easier if I could use the wildcards that work in a menu-driven text or GREP search in script just to ask about the contents of the textframe.
Thanks again
pcbaz (Peter BIerly)
P.S. we have since rewritten the masters so this problem will not exist in the future -- we now know exactly which textframe and/or table indices to refer to to get any particular bits of information and don't need to ask questions about the contents.

Similar Messages

  • Is it possible to use checkbox to active cell/row?

    I´m making a spreadsheet where is multiple values and I´d like to use a checkbox to activate/deactivate some cells. Is it possible in Numbers and how or should I try it in other way? The spreadsheet is going to customer and it is easiest way to choose what they want just only marking the right checkbox.

    You can use the sumif() function like:
    Set the first row to be a header and the add a footer row:
    to sum item prices where a checkbox is checked use the formula:
    C10=SUMIF(A, TRUE, C)
    I hope this helps

  • How to use filter to color cell content

    Numbers 3.5.2: I would like the content of a cell to change color, if the value of the number within the cell drops down below a certain value. For instance: as long as the values in the cell stay above 50 -> the number should be displayed black, if below 50 -> number should appear in red.
    This was possible in Numbers 09 using a simple filter as shown here:
    Did this filter disappear in actual Numbers? Is there any alternative?
    Thanks
    Ulrich

    What you are looking for isn't a "filter", its conditional text or conditional highlighting: http://help.apple.com/numbers/mac/3.5/#/tan93f5de5c3

  • How to use wildcard in filename , in SyncRead operation in File Adapter.

    Hi All,
    Is this possible to use wildcard character in file name while creating file adapter for SyncRead Operation.
    I used write*.txt as a file name to read. But got below error -->
    file:/C:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_notification2_1.0_93d419d1ca67f87872914bf6daf16180.tmp/readfile3.wsdl [ SynchRead_ptt::SynchRead(Empty,Es) ] - WSIF JCA Execute of operation 'SynchRead' failed due to: No file to process.
    File d:\temp\temp1\write*.txt to be processed was not found or not available
    ; nested exception is:
         ORABPEL-11007
    No file to process.
    File d:\temp\temp1\write*.txt to be processed was not found or not available
    Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
    Best Regards
    Vikash

    You cannot defined the wildcard for the file names. But you can provide the file name dynamically if you are on soa suite 10.1.3.4 minimum. You can get information about that in this link http://download.oracle.com/docs/cd/E12524_01/relnotes.1013/e12523/adapters.htm#CHDBBFBD

  • Using wildcards in strings

    Hi all, I was wondering if it's possible to use wildcards in NSStrings?
    So for example say my text is:
    "The quick brown fox jumps over the lazy dog".
    And I want to extract the string "quick brown fox".
    Something like?
    (@"quick*fox");
    Is there a wildcard that can be used to extract the text between quick and fox? I know I could just strip out 'quick brown fox', but what if I didn't necessarily know it was 'brown' between them, and it was some other word?
    Thanks a bunch!

    There are a couple of regex libraries in the open source.

  • Using wildcards in CCM 2.0 search

    Hi experts
    we're using SRM 5.0 (SRM 5.5 Server) with CCM 2.0.
    Is it possible to use wildcards in catalog search?
    Are there any documents about wildcards in CCM ?
    Regards.
    Sven

    Hi
    Yes TREX is mandatory for CCM2.0 (written in the master guide). Please restart the TREX server and retry, if this does not in your case.
    I guess, There are two wildcard characters:
    ? stands for a single character
    stands for a sequence of any combination characters of any length.
    Related links ->
    CCM 2.0 Simple search on CSE does not show any result
    Re: Cross catalog search doesn't work for CCM 2.0
    Re: Search function for Catalogue CCM 1.0 SRM version 4
    CCM view rules - based on wild cards?
    Re: Is TREX required for CCM 2.0 search?
    Hope this answers your queries. Do let me know.
    Regards
    - Atul

  • Possible to use arrays and merge?

    Is it possible to use the results of APEX_UTIL.STRING_TO_TABLE in a merge statement? For example:
    l_selected := APEX_UTIL.STRING_TO_TABLE(:P4_V_METHODS);<br>
    l_methods := APEX_UTIL.STRING_TO_TABLE(:P4_VERIFICATION_SEQ);<p>
    merge into verification_results vr<br>
         using l_methods on (<br>
         l_methods = vr.verification_seq<br>
    ) <br>
    WHEN MATCHED THEN ...<p>
    etc.<p>
    It's a bit of a convoluted task that may not be possible. I've got checkboxes that hold the reference values (method_seq) and a hidden item that returns a string of the primary keys of a rel table (verification_results.verification_seq) and I want to merge what was stored and any new/different things that were checked.
    Y'all are going to want an example on apex.oracle.com, aren't you...
    thanks!

    Short answer, no. Used a couple arrays and loops instead.

  • Use wildcards in filenames

    Good morning everyone!
    I'm pretty new in ODI and I need to read a text file which name starts by "INV", the rest of the filename is variable: date and time.
    Is there a quick solution to do that? Is it possible to use wildcards (*, %) like OS commands to find and read the file?
    Thanks in advance!
    Have a nice day.

    Yes this can be done. You could use an OS command to find the filename using wildcards pass the name of the file to a consuming interface as a variable and then read the file

  • Exchange Online Quarantine Search Using Wildcards

    Hey There,
    This page http://technet.microsoft.com/en-us/library/dn567976%28v=exchg.150%29.aspx states at the bottom you can use wildcards to search quarantined messages in EOP but I can't get the commandlet to work. I know the brackets are wrong but even are rectifying
    that issue the code still doesn't work.
    Is it possible to  use wildcards with get-quarantinemessage?
    Hibs Ya Bass!

    Please read full text most carefully.
    Q. Are wildcards supported when searching for quarantined messages? Can I search for quarantined messages for a specific domain?
    A. Wildcards are not supported
    when specifying search criteria in the Exchange admin center. For example, when searching for a sender, you must specify the full email address.
    "Not" usually means "not". if this is not the case please notify.
    ¯\_(ツ)_/¯
    Is this the sarcasm forum then?
    It also states that wildcards are not supported when using the Exchange Admin Center. I'm not using the admin center I'm trying to use the powershell code that Microsoft themselves have recommended directly below!
    Hibs Ya Bass!
    No.  The documentation clearly states wildcards re not supported.  Reqd the full text.
    Your issue appears to be a missing character.  Fix that and try again/
    ¯\_(ツ)_/¯
    So you're saying that wildcards aren't supported then go on to tell me the there's a missing character in the code that clearly uses a wildcard. Which is it?
    Hibs Ya Bass!

  • Using MS-Sharepoint as a content server from ECC 6.0

    Hi, gurus.
    From the
    [SAP Content Server Installation Guide|https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/cfa73246-0a01-0010-71b4-bc21ccb45c99&overridelayout=true]
    ...you will find this information:
    You can find a description of the SAP Content Server Interface in the SAP Library (on the documentation CD or under www.//help.sap.com) under SAP Web Application Server u2192 Basis Services u2192 Knowledge Provider u2192 Content Management Service u2192 SAP Content Server HTTP Interface. If you want to integrate another content server into your network, the new content server must fulfil the requirements of the interface.
    My simple question is:
    Is it possible to use MS Sharepoint as a content server from ECC 6.0  ?
    Please advice.

    Hi Athol,
    Thanks very much, your answers are very helpful.
    To use SharePoint as SAP DMS for document management. We have depend on the 3rd party products like iNet.DM from ERP.Link or Duet Enterprise and separate licenses required for products?
    Without this 3rd party products, it is not possible to use SharePoint as SAP DMS?
    What is best and cost effective way of achieving this requirement?
    Thanks and Regards,
    Venky.

  • Is it possible to use an exact phrase and a wildcard in the same query

    I am building an address finder, and i have an option where the user can enter part or a full uk postcode. There is a ctxcat index on the address field. I am having a problem searching for part of the postcode, if i enter 'ZZ1 2*' it finds all ZZ1 and all house number 2's if i enter ' " ZZ1 2"*' it fails with an error, is this a bug or is it not possibl to use the exact phrasing and wildcard at the same time.
    If its not possible can anyone suggest another way round this query.
    Thank

    hi,
    in my table i have a column called address,
    these would contain something along the lines of these 2 records.
    10 high street anytown ZZ1 3ZZ
    3 bridge street anytown ZZ1 8ZZ
    If searching on the postcode, the user may enter ZZ1 3 at the moment this would bring back both records, the first one from the ZZ1 and the second one from the house number 3. however if ZZ1 3 is entered i am wanting to just search on the postcode, so it would only match on the first record. so i would like to put the double quotes round the "ZZ1 3" to match on the exact phrase, but then no records come back because of the two letters after the 3, this was why i am asking about the wildcards after the exact phrase ,atch, so it can match the exact phrase of 'ZZ1 3' but then allow any characters after that.
    hope this explaings my problem a bit better.

  • Find and Replace using Wildcards

    I am following the procedure outlined in Trent’s Blog:
    http://www.trentmueller.com/blog/search-and-replace-wildcard-characters-in-dreamweaver.htm l
    This is fantastic stuff and will really help me.
    I have a few (but only a few) times had success.
    It says to “Use regular expression.”  What does that mean?  What is an “irregular expression?”  I have tried with the box checked and unchecked.  Usually with the box checked it will not Find my string.  I uncheck the box and it sometimes does.
    Example:
    Link to    www.schembs.com/TEST_jds_1.html
    At the moment all the Cases are identical.  I have not uploaded the .css to the site so the right-most formating is not properly displaying.  It does work when the .css is available.
    In the source code I literally copy the line of code:
    <p class="type_X"><u>Joh. Heinrich Sch&ouml;m (1713-1785) <span  class="right-most">1.</span></u></p>
    and paste it into the Find box of F&R.  I then put my cursor above the line and it does not Find it, giving me the “Done.  Not found in current document.” response.  I uncheck the “Use regular expression” box and it will find it.
    THEN,
    I try using a wildcard (with the box checked), Finding:
    <p class="type_X">([^<]*)< p>
    or
    <p class="type_X">[^”]*< p>
    and it will find the misc. lines, e.g. where the text is “Case #1”, but not the lines of interest, with Heinrich’s name.  With the box unchecked it Finds nothing.
    Really would appreciate help.  Thanks.
    jds

    jds zigzag wrote:
    It says to “Use regular expression.”  What does that mean?
    A regular expression is a pattern for matching text. It uses a combination of literal characters and special symbols or sequences of characters (technically called metacharacters or metasequences) to represent such things as the beginning and end of a line or any alphanumeric character. For example, \d represents any number (single digit), \d* represents zero or more numbers in sequence.
    I have written a tutorial series on using regular expressions in Dreamweaver here: http://www.adobe.com/devnet/dreamweaver/articles/regular_expressions_pt1.html.
    I try using a wildcard (with the box checked), Finding: 
    <p class="type_X">([^<]*)< p>
    or
    <p class="type_X">[^”]*< p>
    They're not wildcards, but regular expressions. The first part matches the literal characters <p class="type_X">. The next sections use metacharacters.
    ([^<]*) matches zero or more characters (and as many as possible) that don't include an opening angle bracket (<). The parentheses "capture" the value that's matched so it can be used in a replace sequence.
    [^"]* matches zero or more characters (and as many as possible) that don't include a double quote. There are no parentheses, so the value is not captured for reuse.
    The closing <p> matches those literal characters.
    Regular expressions are not easy, but they're extremely powerful, and a good skill to acquire.

  • Using wildcards (*) in sender file adapter - FTP type

    Hi guys!
    Dooes it work using wildcards in sender file adapter (FTP type(!) (filesystem obviously work))? I tried it and it failed. it works only for exact name..
    I read some articles about FTP and the result is, that ftp work always only with 1 file, so I'm wondering, if this is possible.
    Thanks for info!
    Olian

    Thanks for all replies..
    I know of course, that * can be used, I use it in many scenarios too. But on a FileSystem. It is not working if the sender type is FTP.
    *, ., *.dat, ...  nothing like that works..  Just exact file name.
    I am able to pick up file, if I specify it's exact name, so there should be no problem with permissions..
    Please, I'd appreciate one reply with comfirmation: yes, we are using asterisk (*) , we access source files via FTP and they are processed.
    Is there anybody with this experience, that it works?
    Thank you!
    Olian

  • HT1420 Possibility to use 1 Computer - configured with 2 user accounts - each account uses a different Apple-ID for iTunes authorization ?

    I wonder if it is possible to use 1 Computer (Macbook Pro)
    - configured with 2 (ore even more) user accounts (i.e. me + my kid)
    - and each user account has a different Apple-ID (account) for iTunes purchases & iTunes authorization ?
    I woud think that is fine in terms of the underlying license agreement refereing to re-download purchased movies, shows, apps, etc.
    However, it seams that there is that miraculous 90 days restriction, which I don't understand, and which allows me only to "authorise" the Computer under one or the other account. The switch is unfortunatelly only possible every 90 days ?!?
    Thanks anybody for help
    Oliver

    The 90 day association doesn't stop you authorising an account, it only stops you from using another account for iTunes Match or automatic downloads or redownloading its past purchases : http://support.apple.com/kb/HT4627
    There are a few methods listed on this page for how you could do it e.g. multiple user acounts, same iTunes but you having separate playlists, separate iTunes libraries : http://support.apple.com/kb/HT1495

  • Is it possible to use SOA Suite 11g with JDeveloper's integrated WebLogic?

    Is it possible to use SOA Suite 11g with JDeveloper's integrated WebLogic? Or do you have to install an external WebLogic?
    Thanks for help.
    Edited by: user7722720 on 07-Dec-2011 02:04

    Hi
    By default, NO it is NOT possible to deploy any SOA Applications on Integrated Weblogic Server that comes with JDeveloper. This integrated weblogic server is very light weight basic weblogic server with single domain (only 1 AdminServer) to deploy a standard J2EE, ADF Applications like EJBs, WebApps, WebServices, ADF Apps etc. BUT SOA (having BPEL, BPMs etc ) cannot be deployed.
    There is an option to upgrade this integrated weblogic server and install SOA on top of this. Like download soa installer that matches with your JDeveloper version and install soa on top of this weblogic. BUT I strongly do not recommend this, because you will not be able to upgrade iin future to the latest versions.
    Yes, its always better to install the standalone Weblogic Server that matches with your JDeveloper version. Then install SOA on top of this Weblogic Server. Then create RCU Schemas in any Oracle Database. Run config wizard and create a SOA Domain. Now integrate this in your JDeveloper to deploy any soa applications.
    Make sure that JDeveloper, Weblogic Server, SOA Software, RCU all these versions should match and they should be same.
    Thanks
    Ravi Jegga

Maybe you are looking for

  • HP Color LaserJet CM1312nfi MFP driver for OSX 10.9.2

    I recently updated my operating system to OSX 10.9.2 and now I can't scan.  Scanning function in HP director is greyed out and my Apple scanning utilities do not detect a scanner installed.  Tried switching from network to PC connection to no avail.

  • Setting up IP Printing for HP Laserjet 6MP

    Hello friends. I hope somebody can help me out as I have spent hours trying to get this solved. I have an HP Laserjet 6MP, connected to a HP JetDirect Ex Plus print server, and I would like to setup IP printing on it. (I do not want to use AppleTalk

  • How do I create a ringtone for my iPhone 5 from garage band?

    How do I create ringtones from my music in iTunes for my iPhone 5 using Garage Band? Thanks

  • How to enable autocomplete option in SharePoint 2010

    Hi, I have created a multiple selection dropdown in SharePoint (which is a long list). It takes really long to find and select the options from the  list. Is it possible that when we start typing (say the name) it starts showing the options starting

  • FQDN -how to find domain and extension

    Hi ALL I am new to BSP and am going through various threads to get started. I  found out we need to have FQDN to display a BSP page.    to do that we need to set icm/host_name_full in SICF. I am just wondering what value I should give to this paramet