a text showing the amount of the result

Hi all

I need a text to display something like "Total Sales Amount is $xxx.00".

"$xxx.00" are in fact the result, how do?

Thank you
Ling

Just use set option view narrative it as below

Total Sales Amount is @1

@1--> will refer your measurement column, otherwise you can use the PivotTable, then measurement of column accepts the section tag in the section lines can change the column header label then this will give you desired results.

screen of o/p
http://Tinypic.com/r/11ujel5/6

Thank you
Deva

Tags: Business Intelligence

Similar Questions

  • Texts show the number instead of name info.

    Texts show the phone number instead of name on my Apple Watch info.

    Hello

    On your iPhone, in the Contacts application: check that you have created a form of contact for the sender and that the map includes the sender name and phone number.

  • showing the result of the wrong exit

    Dear all,

    I'm just surprised when I run it under instruction using TOAD.
    The database version is 'Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production'

    Select employee_number
    of per_all_people_f
    where employee_number like '% _1 '.

    Shows the result of the output:
    Employee_number
    00040_1
    001
    00176_1
    01371

    I do not understand why the line '001' and '01371' also show. What bugs database for 11 g?
    Appreciate your help.

    Best regards

    Edwin

    Since the character model you used average

    % = Any pattern
    _ = any character

    the output is correct.

    You try to find lines with underscore in the data?

  • When I type in the address bar, yahoo search results appear. This just started happening, he showed the results of google search before. How can I get the results from google instead of yahoo?

    If I type "NBA" in the address bar, I get results from yahoo. I don't want the results of yahoo, I want Google results. This just started today. How can I get Google search results to show after typing in the address bar?

    1. Type of topic: config in the address bar and press on enter
    2. Accept the warning message that appears, you will be taken to a list of preferences
    3. Locate the preference keyword. URL, right-click on it and choose reset

    This will restore it to Google.

  • List shows the results of unwanted files in Acrobat 9 std.

    I have been using Acrobat 9 standard for 5 years now. My main use is to be found in the files of. PDF files. Recently, I am facing a problem. Whenever I search (Basic / Advanced) for a word in several files kept in a file, the result shows the list of all the files (which are analyzed) in results windows although there is no case of "searched the word". For example, I have a folder named "D:\JOURNAL" have 40 records. If I have a word search "ABCD" in "D:\JOURNALS". the result is 40 files with 3 instances' & the list displays all the names of file 40. In fact, it should only show files with one or more instances of "ABCD".

    Can someone tell me how to change it?

    Thank you.

    HCGNA

    Try this:

    In the "Research" of the preferences category, click "Clear Cache content".

  • Run the .bat file using fileObj.execute () showing the result by completely removing the lines of code in extend script?

    Hi guys

    I created a dynamic .bat file created inside java and copy it to a location and managed through fileObj.execute ();

    Example of

    -------------------

    var line1 = 'some code ";

    var line2 = 'some code ";

    myCode var = line 1 + line 2;


    var myFileC = new file

    myFileC.open ('w');

    myFileC.write (myCode);

    myFileC.copy ("some location\file.bat");

    myFileC.close ();

    Run the .bat file

    batFile var = new file ("of the location\file.bat");

    batFile.execute ();

    Now .bat file is successfully executed but the content of this file created bat shows up to extend in script by removing all my code above...

    I have to cancel to do back whenever I run and sometimes accidentally I saved it lose all the code.

    can someone help with this problem?

    Simply change it to this:

    var myFileC = new File ("some location\file.bat");

    myFileC.open ('w');

    myFileC.write (myCode);

    myFileC.close ();

  • How to add two fields and show the result in a third

    All,
    I have 2 InputText field; both are related to the fields of the associated database.

    I want to display the sum of these two fields on a text output.

    I declare the value of the output in this way text link:
    #{sessionScope.PersonalNrBean.summeDB.value + sessionScope.PersonalNrBean.kmGeldMlp.value}

    But I get this error:
    Cannot find resource for bundle java.util.PropertyResourceBundle, key el.convert

    ADF_FACES - 60097:Weitere desKomitees find DEM Fehlerlog einen entry as servers, der mit: ADF_FACES - 60096:Server - Exception while PPR, beginnt #3

    If I declare the value binding to contain the field even two times:
    #{sessionScope.PersonalNrBean.summeDB.value + sessionScope.PersonalNrBean.summeDB.value}
    It works as expected, but it's not really what I need...

    Any ideas?

    Thanks in advance,
    Sergio.

    Edited by: user5414451 the 14.07.2011 02:57

    Try following:

    #{bindings.summeDB.inputValue.value + bindings.kmGeldMlp.inputValue.value}
    

    Jean Lou

  • Captivate 7, can Post the text of the results window be changed?


    The public we ask to take our quizzes do not have e-mail accounts, so we need to change the names of the input fields to be specific on what they have in our company.

    The type your name box: the field is all right, but your Email ID: must change.  Is this possible?

    PostResults.png

    Thank you

    Judy

    Hi Judy,.

    These are run time messages and you can replace it by following this procedure:

    If you want to change specific labels that you cannot change through Captivate, you can do this with the strings.txtfile, which is located in the folder of instalation Adobe Captivate > en_US

    1 open the file

    2. change any label you want

    3. record.

    4 rename in strings.zdct

    5. replace the original strings.zdct file

    6. restart Captivate

    I suggest you original strings.zdct and strings.txt backup - just in case files.

    Kind regards

    MILIN

  • How can I show all the results returned by a sql query?

    Hi guys,.

    I need your help.
    Let's say I have a table: TableA. Fields in TableA are aleg, anon, monkeys. The following sentence can return, in general, several rows: select anon from TableA where aleg = somevalue. I would like to show the result of the anon column but no luck. If I try to display the results in a TextArea and the origin is a sql query shows that the first value of the line. I tried to see the like: display text (based in PLSQL) and a block anonymous plsql and coding
    DECLARE
    v_anon TableA.anon%TYPE;
    CURSOR v_cur IS
    Select anon from TableA where aleg = somevalue;
    BEGIN
    OPEN v_cur.
    LOOP
    SEEK v_cur INTO v_anon;
    EXIT WHEN v_cur % NOTFOUND;
    : FIELD_IN_FORM: = v_anon;
    END LOOP;
    CLOSE V_cur;
    END;
    but in this case, he showed no results.
    So the first question is what type of field can I use to show the result. And the second is what can I do to be able to show all the results returned by the query (if more than one line).

    concerning

    GMC

    We are all happy that you found a solution, but you must sign your messages and change your ID forum. It is always good to know the real name of the person you are communicating with. In addition, if you plan to get answer to your questions in the future, you must mark responses as useful or correct if they helped you solve your problems.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    -------------------------------------------------------------------

  • Windows 7 search did not find the result of a formula in excel file

    Hello

    I have some files stored in a folder specific excel. In excel files, there are some formulas. Windows search, I want to find the file that shows the result of a particular formula. When I search, it not find the file with the text, the result of the formula. Can someone help me please?

    Windows cannot do this, because the formula has not been assessed or calculated yet.  Only Excel can calculate the result of the formula and show the answer, so you must open the file in Excel before you can find the result.

  • How to disable the placeholder text in the URL from the navigation bar and search fields?

    Everytime I open a new tab (often, the homepage is set to blank) I watch 'Go to site' in the navigation bar. The search field shows the name of the active search engine until the text is registration. All I want is to be able to do is disable the placeholder text, showing the two fields as white.

    Add code to the file userChrome.css below default @namespace.

    Customization files (interface) userChrome.css and userContent.css (Web sites) are located in the chrome folder in the user profile folder.

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    
    *|*.textbox-input:-moz-placeholder { color:transparent !important; }
    *|*.textbox-input:-moz-placeholder:hover { color:graytext !important; }

    Use in Firefox 19 +:

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    
    *|*.textbox-input::-moz-placeholder { color:transparent !important; }
    *|*.textbox-input:hover::-moz-placeholder { color:black !important; }
  • Executing a system command and to display the results in the material master

    I need to change and existing TestStand application. I need the string that is returned when you type 'set computername' from a cmd prompt and show the result above all test reports. Would it be a step type call executable? And how I would get it in StationGlobal.computerName? Finally, how can I make it appear at the top of the test report?

    Sorry to ask so many questions from beginner but it was the trial during the test.

    Thank you

    Amherst

    If you have LabVIEW, you can call the following (VI attached), to get the computer name.  It uses the Exec System to access the CMD prompt.

    Take a look at the VI and see if you can use it for any other command 'Set', that you may need.

    Thank you

    PH

  • The results after termination window display

    Hi all

    When I terminate my execution of lot sequence in TS 4.0 using "RunState.Engine.TerminateAll ()", it shows grayed out windows and will not show the result window, even if it saves the results to an XML file on disk.

    Is there a way I can show the results window to the operator after the sequence ends?

    Thank you very much

    Chris

    Chris,

    I used RunState.Root.Sequence.Locals.ModelData.ReportFilePath as the parameter pathString.  It seems that RunState.Report.Location is not being updated until after the load call has been issued.  Report.Location would be the best option, but in this scenario, you will need to go to the root and hope it's the process template.

    The only other option would be to hardcode it in there but then you will need to generate the correct report even every time.

    Hope this helps,

  • Help Removeing all the commas of the results table.

    Good afternoon al,.

    I'm pretty new on Oracle SQL developer and need a little help to find the best way to replace all commas in a table of results with ' > '.

    I run a select statement:

    SELECT

    WHERECLAUSEVALUE

    Of

    FDM_SAB. TDATAMAP

    ORDER BY WHERECLAUSEVALUE ASC

    To produce a very simple table with 1 column. (see bleow):

    *

    *

    *

    *

    00000,50000

    00000,50000

    00000,50000

    00000,50000

    00000,50000

    00000,50000

    As you can see some of the results contains a comma then a space, I'm looking to replace the "," (comma and space) with ' > ' (greater-than sign in). I guess this is done at a point with the function replace but have had no luck so far.

    Any help would be greatly appreciated. Thank you very much


    Charlie

    P.S. I'm new to this forum and this is my first post here; I apologize if my question is not clear or I don't give enough information.

    Replace (columnname, ',' > ')

    Should work for you.

    If this isn't the case, please post what you've tried and show the results you get.

  • method to launch FxV search and display the results in the dashboard FMS?

    Hello

    is there a way to interact with the SGF FxV?  What I would do, it is to be able to click on a button in a FMS dashboard and have this trigger a search specific in the FxV and show the results here?  For example, if you have the results for purchases in the FMS but then wanted to show the details of the session for the last 4 hours, showed the results of the session in the lower part of the dashboard FMS?

    It may take much, but it would be sweet.  What is shown below could be in the lower part of the dashboard FMS...

    If I remember correctly, the GEO cartridge has the functionality you're looking for. Its been a while but I me remember we would sometimes change the parameters of the url. You can conduct a search hit or per session in an iframe.

    David Mendoza

    Foglight Consultant

Maybe you are looking for

  • DVB - T TV tuner on dv5-1024el mount module

    Hi eveyone, my laptop HP pavilion dv5-1024el (windows 7 x 64) is and I would like to ask if it is possible to mount the module tuner DVB - T TV (spare part number 482899-003). I saw that some similar models are sold with this default part, but my lap

  • Laptop computer adfaptor voltage

    Laptop AC adapter currently connected to 240v It can be used on 110v please?

  • Windows 7 stop error

    When I close my windows 7 Home Edition gift premium I have error: WAITTING for BACK GROUND PROGRAM CLOSE - U AS TO FORCE SHUTDOWN or CANCEL. HE DIDN'T THERE HAS NO PROGRAM ON THE LIST OF THE PROGRAM TO CLOSE. AFTER A FEW SECONDS SHUTDOWN OF WINDOWS 7

  • Prematurely worn keys

    My wife has a laser 5000 keyboard (which strangely is not in one of the drop down menus). After about 2 years of home use (not a day all the typing office environment), a large number of the key is worn and cannot be read. I can't find the receipt so

  • Error Windows Update problem "don't shut down your computer updates being configured"

    OT: Windows Update problem. Why should I continue to get the message ' don't shut down your computer updates being configured "where all the updates seem to have been installed?