Height in Column field locked to count - how to change to sum

I'm trying to show cumulative sales figures by product but the column height seems locked to count only.  How can I change to show sum.

my previous reply did work, for some reason you have to restart excel. Copy and past the data as values, then use this data for the map (i had a formula creating the column i wanted to map).

Similar Messages

  • If database field increases in size, how to change report to display this increase?

    Hello Everyone,
           I'm working with Oracle Reports 10g and have a report that was already created.  I need to increase the size of a field from 50 to 200 in width to accomadate a database change.  When i click on the field and choose properties, the width value is locked.  How do i change this?
    thank you,
    steven

    Hi,
    Change your properties of horizontal/ vertical elasticity of the frame enclosing that object to Variable instead of fixed... Now try to define the width of your field .. It can be varied now... 
    Regards,
    Archana

  • Field-Dominance automatically 'Upper', how to change?

    Hi!
    Recently I discovered that the Field Dominance (FD) setting of my sequence/projects is automatically 'Upper'. Also when I capture from VHS, the FD of the clips in my project is always 'Upper'.
    But most of the time I want the FD to be 'Lower', because I often use PAL and DV.
    I've searched the Preference menu and the FCP User Manual, but I cannot find an option where I can set the FD standard to 'Lower'.
    Is there such an option or do I need to change the FD manually every time?

    I think so long as everything is the same field dominance and matches to your settings you're okay. The first time I came across the problem was importing DV PAL (lower ) into a sequence that was mostly SP Beta PAL (Upper) and the sequence was set for 8 bit uncompressed PAL (upper). The flickering of the DV PAL footage was only evident on the external monitor, it looked fine on the computer screen and it didn't matter how much I rendered or tried flicker filters it just wouldn't change. The only thing that worked was the Nattress "Field" plug in. It's in Filter Set 1 - http://www.nattress.com/set1.htm

  • How to coordinate the height of a field in 9i reporter

    hi all,
    I can coordinate the width of a field through the wizard ,how can i set the height of the field ? now i do this just through dragging by hand.
    please help .
    thanks in advance .

    hi,Denis Segard,
    thanks for your help,but i have another question now.
    when the height of the field is expanded, how can i let the content of the field is centered the vertical direction ? you know in the horizontal aspect, the centered property works well, but in the vertical direction how to center the content of the field?
    hope for your reply.
    shawn ding
    you can do the following :
    1) select the field
    2) Menu: Layout / Size objects ...
    3) set the Width and Height of the field.

  • How to change height of Input/output field in dialog program

    How to change height of Input/output field in dialog program.
    I want to big message text box like e-mail message box.
    so could anybody help me on this please
    Thanks
    Basu

    Hi,
        This is not possible directly.Place the icon button in the table field.when u click on that button a popup window will appear in that window place the text editor there u can write text and u can save it ok..
    Award points if helpful.
    Kiran Kumar.G.A

  • How to use javascript in a calculated column field in SP2013

    Hi All,
          I'm trying to use the code below in a calculated column but i can't get it to work.
    any time i add it in it strips out all the quotes etc..and it doesn't show the open dialog.
    Any ideas how i can use this in a calculated column field?
    Thanks in Advance
       ="<div><a href='#'
    onclick='openInDialog(500,600,true,true,false,'http://www.SharePoint.com');'>MS
    SharePoint Site</a></div>"

    Your problem is with the single quotes which both open de onclick event and are used for the javascript string variable.
    You want " and need to escape those in a SharePoint string as ""
    So this
    ="<div><a href='#' onclick=""SP.UI.ModalDialog.OpenPopUpPage('https://office.microsoft.com/en-us/sharepoint/');"">MS SharePoint Site</a></div>"
    Evaluates to:
    <div><a href='#' onclick="SP.UI.ModalDialog.OpenPopUpPage('https://office.microsoft.com/en-us/sharepoint/');">MS SharePoint Site</a></div>
    Once SharePoint dumps the HTML code in the Client Browsers
    (provided you have set the Datatype of the Calculated column field to Number!)

  • How to display field SZAEH (Start Counter Reading) in IP01 for Maint Plan

    Please let me know how i can configure field SZAEH (Start Counter Reading)  to be displayed for data entry in IP01 for Maint Plan creation. I tried Tcode OIW0 but cou;dn't succeed.
    ALl the help will be appreciated

    Jain,
      The start counter reading will automatically comeup in the scheduling parameter screen , if the maintenance plan is tied to a  counter. Isnt this not coming up?
    Regards
    Narasimhan

  • How  to retrieve a column field value from an ADF table ?

    All,
    I have a backing bean where I have bounded a field of an ADF table.
    I would like, in the bean, to read the value of that field so that I can use it inside a task flow router.
    The question: how to read a value from a ADF table column field ?
    In the bean I have the getter and setter of the RichInputText ADF table field. But when I type:
    System.out.println("the name is: " + this.getName().getValue());
    or
    System.out.println("the name is: " + this.Name().getValue());
    I get a null pointer exception.
    Thanks in advance,
    Sergio.

    Thanks Marvin, but this is not really what I'm looking for. Or at least, it does not sounds like to be :)
    I need to get the value contained in a row cell of an ADF table.
    Let's say the table (two rows, three cells) contains these values:
    "table_A", "123", "John"
    "table_B", "456", "Peter"
    When I click on the first row, I need the value: "table_A". Once I got that value, I extract the last char, in this case: "A", and then I call a specific task flow from a task flow router (specified in the task flow router Cases property).
    When I click on the second row, the same process applies, only the router now points to another flow view.
    So to summarize, I need to get the value of a row cell in an ADF table. How to do that from within a javaBean in JDeveloper 11g Release 2 ?
    This is what I have in the bean; so far I've bounded the related row cell (herkunft) to the bean. Each time I select a row on the ADF table, the function setHerkunft() runs - I see that from within the JDeveloper console - but when I try to get its value, I get a null value - hence the surrounding if statement.
    package bean;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ValueChangeEvent;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    +public class taskFlowBean {+
    public RichInputText herkunft;
    public static String taskFlowView = "C";
    +public taskFlowBean() {+
    System.out.println("taskFlowBean constructor call");
    +}+
    +public void setHerkunft(RichInputText herkunft) {+
    System.out.println("set herkunft");
    this.herkunft = herkunft;
    if (this.getHerkunft().getValue() != null )
    System.out.println("herkunft is: " + this.getHerkunft().getValue());
    +//here taskFlowView will set accordingly with the herkunft value.+
    +}+
    +public RichInputText getHerkunft() {+
    System.out.println("get herkunft");
    return herkunft;
    +}+
    +public String getTaskFlowView() {+
    System.out.println("get taskFlowView ! : " this.taskFlowView);+
    return this.taskFlowView;
    +}+
    +}+
    Regards,
    Sergio.

  • How to modifiy column field?

    how do I setup the form column field?

    Hi;
    I am not sure what you mean by a "column" field. 
    The field types in FormsCentral are: Text box, Text box (multi-line), Date, Email, Single choice, Multiple choice, Drop down menu, Single checkbox, Rating scale, Attachment, Formatted text, Image, and line.  Can I help with one of those fields?
    Here is an overview tutorial that should be useful:
    http://forums.adobe.com/docs/DOC-1413
    Thanks,
    Josh

  • How to get difference between two rows for a column field?

    hi, all,
    Could anyone show me what query statement is to get the difference betweem two rows for two column fields?
    The tables and its records are like this:
    id,      begin,      end
    p1         21          30
    p2          45          60
    p3          120          150
    I would like to have the query result like this
    id,    diff
    p1     15    --- which is 45 minus 30
    p2     60    --- which is 120 minus 60
    and so on...
    thank you in advance.
    Raffy

    You can use the LAG function to access values from previous rows:
    with q as (select 'p1' id, 21 v_start, 30 v_end from dual
    union all
    select 'p2', 45, 60 from dual
    union all
    select 'p3', 120, 150 from dual)
    select id, v_start, v_end, v_start - lag (v_end, 1, 0)
      over (order by id) v_diff from q
    ID,V_START,V_END,V_DIFF
    p1,21,30,21
    p2,45,60,15
    p3,120,150,60
    See the SQL Language doc
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/functions075.htm

  • How to make a particular row and column field editable in ALV

    Hi Experts,
    I have a requirement to make a particular row and column field editable in ALV output. Like i need to make 2nd row - 4th column editable of ALV output.
    Kindly help me out to solve this.
    Any help would be appreciated.
    Thanks,
    Ashutosh

    Hi Ashutosh,
    please check below, explained by some experts.
    In the below link  editing two columns MOD_RANK and TECH_RANK.
    These two columns will be in edit mode once after selecting the required record
    Editing single cell in a row of ALV table
    And also look for more info
    http://scn.sap.com/thread/884976

  • How to display a Sum field for a formula column?

    Hi,
    I need to display a sum for a formula column at the end of report. for example: my formu_col=col_1-col_2
    col_1 col_2 formu_col
    3 1 2
    6 5 1
    total:sum(col_1) sum(col_2) sum(formu_col)
    now i have sum(col_1) and sum(col_2), but i don't have sum(formu_col)
    thanks

    Hi
    You may add a summary column in the same data group that you have sum(col_1) and sum(col_2). In that properties of the new column point the source as formu_col.
    Hope this helps.
    Fouwaaz

  • Dynamic column fields of ResultSet

    Hi guys,
    I am working on a web-based system where user also specifies the column fields of ResultSet he/she wants to see. SQL query will display all the results for those selected column fields only.
    Suppose user selected Last Name and First Name.Then my ResultSet will display reports with Last Name and First Name column headings and first name and last name values only of the ResultSet.
    If the user specifies ID number, Address,City, State, Zip then ResultSet will display reports with these column headings and values only.
    I am using Oracle 8i to pull the values.Anyone got any idea how to implement it?
    Any help or suggestion would be highly appreciated.
    Thanks

    Ok Guys, I am attaching a small part of my code on the page below. This is the working code that I have written till now.
    NOw problems with this:
    (1) I can easily substitute "*" in SQl query with the column field variables. But first of all I need the columns to appear in order of priority. Like as I said earlier if last name, first name selected it should appear first then the address and so on.
    (2) The Column names that I have hardcoded, how to do away with that while still having column names on top like "First Name" and "Last Name"
    <jsp:useBean id="DataBean" scope="request" class="office.DataBean" />
    <jsp:useBean id="FormBean" scope="request" class="office.FormBean" />
    <%
    String result = "";
    DataBean.connect();
    FormBean.setRequest(request);
    String classify[] = request.getParameterValues("classify");
    int size2 = classify.length;
    String beta = "";
    String beta1 = "";
    if ((size2 == 1) && (classify[0].equals("all")))
    beta = "all";
    else if ((size2 == 1) && (classify[0] != "all"))
    beta = "wk_char30_4 = '" + classify[0]+ "'";
    else if ((classify[0].equals("all")) && (size2 != 1))
    beta = "all";
    else
    for(int p = 0; p < size2-1; p++)
    beta1 = beta1 + "'" + classify[p] + "'" + ",";
    beta1= beta1 + "'" + classify[size2-1] + "'";
    beta = " wk_char30_4 IN (" + beta1 + ")";
    %>
    <h3 align = center>Selected Employee Records between <%=begin%> to <%=end%> </h3>
    <%
    boolean filterbyclassify = beta.equalsIgnoreCase("all");
    String sql = "SELECT * FROM f_personnel, f_repair_center where" +
    (filterbyactive?" wk_active IN ('YES','NO') ":" wk_active = '" + active + "'") +
    (filterbysupervisor?"":" and wk_is_supervisor = '" + supervisor + "'") +
    (filterbyclassify?"":" and " + beta )+
    " ORDER BY wk_last_name, wk_first_name";
    DataBean.setSql(sql);
    int counter = 0;
    int temp = 0;
    %>
    <html>
    <title>
    Employee System
    </title>
    <body>
    <script type="text/javascript">
    function set(n,length)
    var thisBox;
    for (i=0; i < length; i++)
    thisBox = 'document.myForm.req' + i;
    eval(thisBox).checked = n;
    </script>
    <table border=2 cellpadding=4 align=center bordercolor=black>
    <tr align=center>
    <td ><h4>Select</h4></td>
    <td ><h4>Last Name</h4></td>
    <td ><h4>First Name</h4></td>
    <td ><h4>ID Code</h4></td>
    </tr>
    <% String lname="",fname="",code="";%>
    <form name="myForm" action= "test2.jsp" method = "post">
    <% while (DataBean.getNextRow())
    lname=DataBean.getString("wk_last_name") ;
    fname=DataBean.getString("wk_first_name") ;
    code=DataBean.getString("wk_id_code");
    %>
    <tr align=left bgcolor= <% counter++; if (counter % 2 ==1) out.print("#CC9999"); else out.print("#D3D3D3");%>>
    <td ><input type="checkbox" name="req<%=temp%>" value="<%=lname%>,<%=fname%>,<%=code%>"></td>
    <td ><font size="-1"><%=lname%></font></td>
    <td ><font size="-1"><%=fname%></font></td>
    <td ><font size="-1"><%=code%></font></td>
    <%temp++ ;%>
    </tr>
    <%
    }%>
    <input type = hidden name=temp value=<%=temp%>>
    <input type = hidden name=begin value=<%=begin%>>
    <input type = hidden name=end value=<%=end%>>
    <p>
    <input name=button onclick=set(1,<%=temp%>) type=button value="Select All">
    <input name=button onclick=set(0,<%=temp%>) type=button value=" Reset ">
    <input type =submit name="Save Selection" value = "Save Selection">
    </p>
    </form>
    </table>
    <% DataBean.disconnect(); %>
    </body>
    </html>

  • If I use the function to align adjacent fields, or the function to match size, duplicate fields are created. How can I get this to stop?

    I have a form that consists of columns and rows of fillable fields. When I use the edit function to make the height of the fields the same, or make the widths of the different columns of fields the same, or align the fields vertically or horizontally, duplicate fields are created. If these fields have a box around them, all of the duplicate fields' boxes are shown. The field names have the same base name, but have a suffix that is sequentially numbered. If I delete the "lower" numbered suffix names (with the same base name), the resulting field does not appear on the form.
    What is going on with the alignment or size process. I do use the CTRL-Click function to select the group of fields I am trying to size or align. If using the selection of multiple fields should be done differently, how can it be done?

    No. That's not what's happening. The duplicate fields are ONLY created after I employ the alignment or sizing functions. Weird.
    I was hoping that this was the result of some kind of setting in Acrobat, or that the duplicate fields would disappear when saving the form, but that's not what happened.
    Thanks for your input, however.

  • Drop Column Field and Drop Row Fields in the Details Field area in the Cube Browser of BIDS/SSDT 2012

    Hello. When I right click a cube in the solution explorer and click browse, I am presented with a Details field area which doesn't have "Drop Row Fields" area like in BIDS 2008, and doesn't have "Drop Column Fields" area like in BIDS. It just has one details
    area with the message "Drag levels or measures here to add to the query".
    How do I include the  "Drop Row Fields" area and the  "Drop Column Fields" area in this Details area so it can be like 2008? 

    I am using MDX query to build SSRS report.
    How do i get MDX query from Excel ?
    Hi Vishal,
    We can use "OLAP PivotTable Extension" to get MDX query in Excel, please download it from:
    http://olappivottableextend.codeplex.com/
    In addition, I would suggest you open a new case if you have any more questiosn.
    Regards,
    Elvis Long
    TechNet Community Support

Maybe you are looking for