How to show true in if formula when sequence difference

Hi,
If formula compare exact matches. Can we make it to read true if there is approximate matching ?
here,   "A Conventional PCI bus add-in card connector"    "A PCI Conventional bus add-in card connector" match should be true not false. is it possible ?

Hi,
According to your description, your request may be done via
Microsoft Fuzzy Lookup Addin. It can be used to identify fuzzy duplicate rows within a single table or to fuzzy join similar rows between two different tables.
Then, we also may be use macros via VBA code. If you have further question about coding, I recommend you post the question to VBA forum:
https://social.technet.microsoft.com/Forums/en-US/3792bc36-6aae-4d38-af53-72b337f64faf/error-using-byval-vba?forum=officeitpro
Regards, 
George Zhao
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • Can someone tell me how to show a different main menu when someone is logged in?

    When a customer is logged in they can see secure pages. I also want a different menu to appear when logged in, and when logged out I want the menu to go back to normal. Can someone assist please? Let me know if you need more information from me. Thank you in advance!!

    I recommend referring to the following forum post on how to achieve this: Re: Secure Zone - show, hide, or disable content when a user is recognized as logged in.
    To summarize, you would need to use the module {module_isloggedin}  which will render a 0 or a 1 based on whether the customer is logged in or not. With a combination of CSS/JS, you can specify a different menu to display based on whether they're logged in or not.

  • How to show a value in column when condition is true?

    Assume I have the following simplified SELECT statement:
    SELECT a, b, ???
    FROM tab;
    In the third column a value of "yes" should appear when the following condition is true:
    tab.c = tab.d
    Otherwise the value should be "no" (or even blank).
    How can I achieve this?
    The solution should be more general for situation if many tabs are involved,....
    Peter

    How can I achieve this?
    The solution should be more general for situation if many tabs are involved,....So do you expect a generalized SQL statement that handles are arbitrary number of tables with arbitrary column names?
    It would be helpful if you provided DDL (CREATE TABLE ...) for tables involved.
    It would be helpful if you provided DML (INSERT INTO ...) for test data.
    It would be helpful if you provided expected/desired results & a detailed explanation how & why the test data gets transformed or organized.

  • How to show photo in form portlet when using ORDSYS.ORDIMG?

    I built a Form based on table that has ORDSYS.ORDIMG column.
    When I query the form,the photo shows. And then I publish this
    form to portal and add in a page. But the form portlet doesn't
    show picture, when I query. Why? What should I do?
    Please help me. I'm looking forward to hearing from all of
    you
    Thank you,
    Sirin

    Well I don't know how to use the ORDSYS.
    So I've created a solution myself using javascript.
    I created a table with a column "image" as VARCHAR2. Using the portal image fieldtype (in a form) will store the image name in the table-column and the actual image in a portal own table.
    1) First in the form added a new field (label only)
    2) The label is "<IMG SRC=/images/blank.gif NAME=test>"
    NB. I'm not sure if I added the blank image myself or not but it is a small gif in the images directory with only a transparent color.
    3) In the Additional PL/SQL Code section ... after displaying the page I added the following code;
    DECLARE
    v_image VARCHAR2(200);
    BEGIN
    v_image := p_session.get_value_as_VARCHAR2(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_<imagefieldname>');
    IF v_plaatje IS NOT NULL THEN
    HTP.PRINT('<script language="JavaScript">
    if(document.images)
    document.test.src="http://<hostname>/pls/portal30/docs/'||v_image||'";
    </script>');
    END IF;
    END;
    Regards,
    Arnoud Koot
    Oracle Web Consultant
    http://www.thedoc.nl

  • How to show error page in browser when Column cant be null

    Hello everyone,
    I've got a Record Insertion Form, and some of the fields are
    set as "NOT NULL". When I miss out a few fields, the browser shows
    the text - Column 'propertytype' cannot be null, which is fine, as
    it cannot be null. But how do I redirect this to a user friendly
    page which basically says, "sorry you havent written in all the
    fields, please go back". How do I do this in dreamweaver?
    Thank You

    You need to validate all user input prior to executing any
    sql statement. That will do it. There are also techniques to trap
    error messages, which vary depending on the scripting language you
    are using.

  • How to show audio/video from timeline when I've already ripple deleted

    Is there a way to show on a time line info that I've ripple deleted? that is, for example I clipped too much from the first part of my timeline and I want to put some of that back.

    You haven't destroyed anything by the ripple delete. Just move your clip over and extend the part you still want with your mouse. There are shortcut keys as well, but I don't remember them just now. When you highlight your clip, you should see a handle at the end - just extend it. You may have to zoom into the timeline.

  • How to show popup message in jpanel when mouse is moved over some area

    i have made a bar graph for my database in jpanel. now i want to show the proper data in popup when user moves mouse over apprpriate bar in jpanel. i would like to know is there is any way to do this. i need help as i m new in the field of java. i am making birthday remainder service for user. i am using j2se.

    i want to show the proper data in popup when user moves mouse over apprpriate bar Sounds like you want to use a tooltip. Is your "bar"
    a) a real component ?
    If so, then just use setToolTipText(...) method
    b) a graphical drawing?
    Then you will need to convert the mouse coordinates and display a tool tip based on the coordinats. The SwingSet example that comes with the JDK has an example of this:
    change to directory: j2sdk1.4.2\demo\jfc\SwingSet2
    then execute >java -jar SwingSet2.jar

  • How to show old value in webui when user press NO button on popup button.

    Hi Experts,
    As per requirement I have created custom field with dropbox and with popup box to cofirm user decision if value from field changes.
    Now on Popup when user press Yes then its Ok as no need to change the current value in the field.
    but when user press the NO button I want to display the old value on Web UI so now I am able to catch the old value and pass it into the field at backend but I am not able to make the change on the web page.
    Please reply if anyone have solution for it.
    BR
    Gaurav    

    Hi Gaurav,
    First of all when all this is happening in UI why you need to pass the selected value to backend. I didnt get this.
    I believe, this is only ui related and the old value which you got can be set in the IMPL class global variable and  trigger method set_on_close_event, say here 'CONFIRM_POPUP_CLOSED' as shown below:
      gr_popup->set_on_close_event( iv_event_name = 'CONFIRM_POPUP_CLOSED'
                                        iv_view = me ).
    Retrive the answer as per selection from popup in method 'CONFIRM_POPUP_CLOSED'
    by using:
      lv_answer = gr_popup->get_fired_outbound_plug( ).
    if lv_answer is NO, then put back the globally stored old value back to dropdown attribute, using:
    set_property_by_value method(   iv_attr_name = 'dropdown attr' iv_value = 'old value' )
    Thats it. No need to do anything.
    Regards,
    Bhushan

  • Team Calendars - How to show a managers team calendar when that manager reports to you

    If a manager has other managers that report to them, is it possible to have the lower level manager's "team calendars" show up in the higher level manager's Outlook 2010 calendar view.  Or are these other team calendars going to have to be
    manually created and maintained?
    Thanks for your time.

    Hello,
    A team calendar is tied to the mailbox owner's manager's direct team only. It will be automatically showed in users' calendar. If you want to view a team calendar of another manager, a workaround is create a calendar group and share calendar.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • How to show masked links in PDF when printing?

    Hello
    Ive got a PDF where some hyperlinks are masked behind certain words. For digital use of this document this is fine. However when printing I would like to have the full link to be printed (eg as a comment or on top of the word which contains the link). Is there a possibility to do this with Acrobat?
    thanks

    Hello there,
    Thanks for posting. Unfortunately, I'm afraid you're in the wrong forum; this is the forum for questions specific to Acrobat.com (www.acrobat.com), and we are not able to help with questions about other Adobe products and services. If you're using Adobe Reader free software, I recommend posting to the Reader forum, where your questions is more likely to get a helpful response:
    http://forums.adobe.com/community/adobe_reader_forums
    Sorry not to be of more help! Good luck.
    Best,
    Rebecca

  • How to show Min and Max values when another value "changes to a new value"

    Hi
    If I have this data (generated with this query: SELECT 1 A, 1 B UNION ALL SELECT 2, 1 UNION ALL SELECT 3, 2 UNION ALL SELECT 4, 2 UNION ALL SELECT 5, 1)
    A B
    1 1
    2 1
    3 2
    4 2
    5 1
    How can I generate this data (created with this query SELECT 1 Amin, 2 Amax, 1 B UNION ALL SELECT 3, 4, 2 UNION ALL SELECT 5, 5, 1)
    Amin Amax B
    1 2 1
    3 4 2
    5 5 1
    Thanks.

    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules. Temporal data should
    use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect. 
    This is minimal polite behavior on SQL forums. You also do not know the ANSI/ISO syntax for insertion and you did the old Sybase insertion kludge wrong, that we need keys, etc.
    CREATE TABLE Foobar
    (foo_seq INTEGER NOT NULL PRIMARY KEY,
     glop_score INTEGER NOT NULL);
    INSERT INTO Foobar
    VALUE
    (1,1),
    (2,1),
    (3,2),
    (4,2),
    (5,1);
    >> How can I generate this data (created with this query SELECT 1 Amin, 2 Amax, 1 B UNION ALL SELECT 3, 4, 2 UNION ALL SELECT 5, 5, 1) <<
    This makes no sense; you have the wrong syntax and mixed data types. My guess is: 
    SELECT MIN(foo_seg), MAX(foo_seq), MAX(glop_score)
      FROM Foobar
     GROUP BY glop_score
    HAVING MIN(glop_score) = MAX(glop_score); 
    Amin Amax B
    1 2 1
    3 4 2
    5 5 1
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Show LabVIEW VI Front Panel When Sequence Step Called

    Hello,
    By clicking on the “Show VI Front Panel When Called” checkbox in the Step Settings pane displays the LabVIEW VI Front Panel for approximately 100 milliseconds. Is there a configuration way to display the VI front panel for a longer period of time, during that step execution, and allow the user to control the duration of the front panel exposure by clicking to resume execution of the sequence file at their will?
    Thank you.
    Solved!
    Go to Solution.

    Hi,
    You will need to have some sort of structure in your VI for handling front panel response, otherwise you front panel is only going to be visible for as long as it takes to execute an return back to teststand.
    But remember, once you hold your step within that VI which is waiting on the operator to eventual close it, your Sequence will be held as well and if you are expecting steps to continue running after your VI then you will have to consider running it in parallel to your main test sequence.
    You may also need to consider what happens if you want to terminate your Test Sequence, how do you close your VI.
    Check out 'Strategies for Terminating or Breaking Sequences' in the following.
    hope this is of help
    Regards
    Ray Farmer

  • Why is Muse not loading/showing contact form content correctly when I hit preview or publish?

    This is my contact form in the design panel.
    This is the preview and published end product.
    I cannot figure out how to show the content boxes, and when I try to fill each section in to send a test email, It tells me there is an error with one of my answers.

    Hi thank you for your reply,
    I managed to find a solution today.
    I am new to web design,so I didn't realise that I wasn't using a 'web safe' font for the content boxes. As soon as I changed the font, my form loaded correctly and is now recieving test messages without a problem.

  • How to show object creation in UML

    How to show object creation in UML

    In a sequence diagram, it's a line (with arrow) pointing to the new object and the <creates> or <new> tag as mentioned above.
    | obj 1  |
         |
         |    <creates>     ----------
         | -------------->  | obj 2  |
         |                  ----------or----------
    | obj 1  |
         |
         |      <new>       ----------
         | -------------->  | obj 2  |
         |                  ----------

  • Hi,  We are developing quite a few excel worksheet reports. The reports dont show the cells if contain formulas ( when opened in iPad or ipod  ),  is there any good solutions .

    Hi, 
    We are developing quite a few excel worksheet reports.
    The reports dont show the cells if contain formulas ( when opened in iPad or ipod  ),
    Is there any good solutions .
    Thanks.

    There is no version of Excel for iPads.  iPads come with something that lets you view the contents of Excel files but it implements only the common easy features and there are (literally) hundreds of things you can do in Excel that it doesn't know how to show on the screen, including some functions.
    If you intend to work with spreadsheets on an iPad I suggest you buy Numbers for iPad
    http://www.apple.com/apps/iwork/numbers/
    which understands more (but still not 100%) of the things that Excel does.  It is so cheap that you can probably afford to buy a copy just to see whether it does what you want.
    If you are doing things with spreadsheets and intend to be primarily working on iPads then I suggest you actually use Numbers on a Mac as well, rather than using Excel at all.

Maybe you are looking for

  • Unable to add more than three at a time

    I am using iPhoto 8.12 and OS 10.6.7 and also 10.6.8 on a late 2009 iMac. I am trying to import jpg photos from a file. I can only import three at a time. If I try to import 4 or more the app crashes. Any help appreciated. (I have tried to reinstall

  • Error while creating OEBS user

    I'm using OIM 9031 with OEBS User Management connector from CP 9041. I know that by default OEBS allows creating users with blank passwords. But when I try to provision OEBS to OIM user with empty password filed at OraApps Process Form, I'm receiving

  • Link between SAP BW and SAP R/3

    Dear All, I am trying to connect BW to SAP R/3. Transaction SM59 – I have successfully create a connection between R3 and DW1. Create a ‘DT2CLNT600’ R3 client And Create a ‘DT2CLNT600’ R3 dialog with option ARFC. Transaction SPRO : I have add the Log

  • Multiple Line Chart in BI Publisher

    Hi All, I have a requirement where i have to display the time taken by concurrent programs in last week Say.. I have 3 concurrent programs ( I can have more also) and the data can be represented as below. ConcProg-1 ConcProg-2 ConcProg-3 Mon 1 min 2

  • To capture the passed time in a TimedTrigger UI Element

    Hi, I want to capture the passed time in a TimedTrigger UI Element. I need to capture the passed time from init the application to the execution of an action of a button. ¿How can i do it? Regards.