Running Sum on Sorted data & freeze panes?

Hi all,
Brand new to Web Intelligence XI, so learning whilst putting together first report, however need some guidance and help on the following. 
I have a basic report which is sorted by highest ytd sales within the report and has breaks at each change in brand category.
I need to be able to provide a running % cumulative total for each article within each brand category based on the highest ytd  sales.
I have tried using the running sum formula but this does not give correct results due to the sort, as when this is taken off
the formula is correct.  Have different varients of this after reviewing the forum but unfortunately still cannot get this basic calculation to work.
My second question is that when viewing a lot of data, is it yet possible to freeze the headers in each column?
Thanks in advance for any help given.
Nick

Freeze panes will be supported in BO 4.1 which is planned to be released in Q3 2013.
Check the details below:
http://scn.sap.com/community/businessobjects-web-intelligence/blog/2013/03/10/what-is-new-with-web-intelligence-bi-41-part-2-core-capabilities
http://scn.sap.com/community/business-intelligence/blog/2013/01/31/sap-businessobjects-bi-41-update-and-bi4x-roadmap-asug-webcast-part-1
http://scn.sap.com/community/business-intelligence/blog/2013/02/01/sap-businessobjects-bi-41-update-and-bi4x-roadmap-asug-webcast-part-2

Similar Messages

  • JTextArea with freeze pane functionality

    Greetings. I am trying to implement a plain text viewer that has some sort of "freeze pane" functionality (like that found in MS Excel)
    I took the approach of using 4 JTextArea and put them into a JScrollPane, its row header, column header and upper-left corner. All these text areas share the same document.
    Everything works as expected. When I scroll the lower-right pane, the row and column headers scroll correspondingly. The problem I have is that the document in the lower-right pane now shows duplicate portion of the document that is already showing in the row and column headers.
    Knowing that this should merely be a matter of shifting the Viewport on the document, I went through the documentation and java source, and just couldn't find a way to translate the view. SetViewPosition() works to a certain extent, but the scrollbars allow users to scroll back to the origin and reveal the duplicate data, which is undesirable.
    Your help with find out a way to relocate the view to the desired location is much appreciated.
    khsu

    some sample code attached (with a quick hack in attempt to making it work, at least presentation-wise)
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.plaf.*;
    import javax.swing.plaf.basic.*;
    import javax.swing.text.*;
    public class SplitViewFrame extends JFrame {
        int splitX = 100;
        int splitY = 100;
        public static void main(String[] args) {
            // Create application frame.
            SplitViewFrame frame = new SplitViewFrame();
            // Show frame
            frame.setVisible(true);
         * The constructor.
         public SplitViewFrame() {
            JMenuBar menuBar = new JMenuBar();
            JMenu menuFile = new JMenu();
            JMenuItem menuFileExit = new JMenuItem();
            menuFile.setLabel("File");
            menuFileExit.setLabel("Exit");
            // Add action listener.for the menu button
            menuFileExit.addActionListener
                new ActionListener() {
                    public void actionPerformed(ActionEvent e) {
                        SplitViewFrame.this.windowClosed();
            menuFile.add(menuFileExit);
            menuBar.add(menuFile);
            setTitle("SplitView");
            setJMenuBar(menuBar);
            setSize(new Dimension(640, 480));
            // Add window listener.
            this.addWindowListener
                new WindowAdapter() {
                    public void windowClosing(WindowEvent e) {
                        SplitViewFrame.this.windowClosed();
            makeFreezePane();
        void makeFreezePane() {
            Container cp = getContentPane();
            Font font = new Font("monospaced", Font.PLAIN, 14);
            OffsetTextArea ta = new OffsetTextArea();
            ta.setSplit(splitX, splitY);
            ta.setOpaque(false);
            ta.setFont(font);
            // read doc
            readDocIntoTextArea(ta, "..\\afscheck.txt");
            JScrollPane jsp = new JScrollPane(ta);
            jsp.getViewport().setBackground(Color.white);
            Document doc = ta.getDocument();
            // dump doc
            //dumpDocument(doc);
            JViewport ulVP = makeViewport(doc, font, 0, 0, splitX, splitY);
            JViewport urVP = makeViewport(doc, font, splitX, 0, 20, splitY);
            JViewport llVP = makeViewport(doc, font, 0, splitY, splitX, 20);
            jsp.setRowHeader(llVP);
            jsp.setColumnHeader(urVP);
            jsp.setCorner(JScrollPane.UPPER_LEFT_CORNER, ulVP);
            jsp.setCorner(JScrollPane.UPPER_RIGHT_CORNER, new Corner());
            jsp.setCorner(JScrollPane.LOWER_LEFT_CORNER, new Corner());
            jsp.setCorner(JScrollPane.LOWER_RIGHT_CORNER, new Corner());
            cp.setLayout(new BorderLayout());
            cp.add(jsp, BorderLayout.CENTER);
        void readDocIntoTextArea(JTextArea ta, String filename) {
            try {
                File f = new File(filename);
                FileInputStream fis = new FileInputStream(f);
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                int br = 0;
                byte[] buf = new byte[1024000];
                while ((br = fis.read(buf, 0, buf.length)) != -1) {
                    baos.write(buf, 0, br);
                fis.close();
                ta.setText(baos.toString());
            } catch (Exception e) {
                e.printStackTrace();
                ta.setText("Failed to load text.");
        protected void windowClosed() {
            System.exit(0);
        JViewport makeViewport(Document doc, Font f, int splitX, int splitY, int width, int height) {
            JViewport vp = new JViewport();
            OffsetTextArea ta = new OffsetTextArea();
            ta.setSplit(splitX, splitY);
            ta.setDocument(doc);
            ta.setFont(f);
            ta.setBackground(Color.gray);
            vp.setView(ta);
            vp.setBackground(Color.gray);
            vp.setPreferredSize(new Dimension(width, height));
            return vp;
        static void dumpDocument(Document doc) {
            Element[] elms = doc.getRootElements();
            for (int i = 0; i < elms.length; i++) {
                dumpElement(elms, 0);
    static void dumpElement(Element elm, int level) {
    for (int i = 0; i < level; i++) System.out.print(" ");
    System.out.print(elm.getName());
    if ( elm.isLeaf() && elm.getName().equals("content")) {
    try {
    int s = elm.getStartOffset();
    int e = elm.getEndOffset();
    System.out.println(elm.getDocument().getText(
    s, e-s));
    } catch (Exception e) {
    System.out.println(e.getLocalizedMessage());
    return;
    System.out.println();
    for (int i = 0; i < elm.getElementCount(); i++) {
    dumpElement(elm.getElement(i), level+1);
    class OffsetTextArea extends JTextArea {
    int splitX = 0;
    int splitY = 0;
    public void setSplit(int x, int y) {
    splitX = x;
    splitY = y;
    public void paint(Graphics g) {
    g.translate(-splitX, -splitY);
    super.paint(g);
    g.translate( splitX, splitY);
    /* Corner.java is used by ScrollDemo.java. */
    class Corner extends JComponent {
    protected void paintComponent(Graphics g) {
    // Fill me with dirty brown/orange.
    g.setColor(new Color(230, 163, 4));
    g.fillRect(0, 0, getWidth(), getHeight());

  • Office Web Apps Server June 2013 Cumulative Update Excel Freeze Pane and Hide/Un-hide Feature Missing

    Hi,
    I have recently updated the Office Web Apps Server to the June 2013 Cumulative Update (KB2817350) which was published with the new features that allow rendering of freeze pane, hide/un-hide the excel worksheet and row/columns, Header
    Row Snapping, Sorting, Data Validation and Autocomplete. i have followed the TechNet article (http://technet.microsoft.com/en-us/library/jj966220.aspx)
    to update the office web apps server. Current setup is a SharePoint 2013, SQL 2012 and Office Web Apps server. All server are installed on Windows server 2012.
    3vild3vil

    Hi,
    Sorry to inform you that these new features are specific to cloud Excel Web App in both SkyDrive and Office365. There is no update available for on-premise Excel Web Apps installed locally
    yet. Thank you for your understanding.
    http://blogs.office.com/b/microsoft-excel/archive/2013/06/26/we-ve-updated-excel-web-app-what-s-new-as-of-june-2013.aspx
    Miles LI TechNet Community Support

  • Can pp col headings act like freeze pane in excel

    Hi.  We run 2012 enterprise.  Can co headings on my pivot table scroll as freeze pane does in regular excel?  How?

    Hi, your Situation is as follow?:
    You have a powerpivot model, and a pivot-table based on this PP data, created with Excel 2013
    Now you want the Pivot-table columns to freeze if you scroll down the Excel sheet?
    IMHO you can't do this because Excel has no Feature to freeze Pivot-table column, but can freeze columns of Excel table objects
    You can get PP data into a Excel table object by creating a DAX Query, see:
    http://www.sqlbi.com/articles/linkback-tables-in-powerpivot-for-excel-2013

  • "Display As Running Sum" Feature

    Hi
    Tried to use "Display As Running Sum" feature and it looks like it adds all the values across the pivot table and does not reset it on a new row...
    So for instance we ahve a table as follows
    A 1 2
    A1 3 4
    A2 5 6
    After running sum applied:
    A 1 3
    A1 6 10
    A2 15 21
    Is there any way value could be reset after each row ? Any hidden configuration file to be changed ?

    Initial data is:
    Product Date Value
    A Day1 1
    A Day2 2
    A Day3 3
    A1 Day1 4
    A1 Day2 5
    A1 Day3 6
    A2 Day1 7
    A2 Day2 8
    A2 Day3 9
    Pivot table looks like:
    ---- Day001 Day002 Day003
    A 1 2 3
    A1 4 5 6
    A2 7 8 9
    Required table (values disaplyed as running sums by product)
    ---- Day001 Day002 Day003
    A 1 3 6
    A1 4 9 15
    A2 7 15 24
    PROBLEM: its easy to create formula RSUM(value by product) and put it as pivot table measure BUT I have around 1000 reports with different dimensions which requires to create RSUM(value by dimension1), RSUM(value by dimension2) ... RSUM(value by dimension1000) and its sort of nightmare...
    Instead of RSUM I thought that feature "Display As Running Sum" could be used, but its not working as expected in terms of it does not get reset for each row. How do I configure "Display As Running Sum" to reset value for each row ?
    PS: this is what "Display As Running Sum" gives
    ---- Day001 Day002 Day003
    A 1 3 6
    A1 10 15 21
    A2 28 36 45

  • Review comments completely hidden by freeze panes in VBA Excel

    Hello
    I have a worksheet with review comments attached to the cell during run time. I use these
    review comments like tool tips to explain the user that the field is a mandatory field and it must be entered .
    I also used the Freeze Panes feature to keep the left side columns say (4 columns)  visible
    as the worksheet is scrolled horizontally. However, the review comments are visible when it is not scrolled but they are hidden under the frozen pane when the worksheet is scrolled horizontally.
    The review comment that overlaps the boundary is no longer visible when scrolled completely.
    Is there any way to prevent this from happening? Please suggest
    Thanks and Regards
    Kamal
    Kamal

    Hello Zhang
    Thanks very much for your response and suggestions
    I have tried increasing the width of the column D but still the review comments are getting hidden under the frozen panes. Dragging of comment window is not possible as these review comments are attached to the cell at run time. 
    Trying the data validation technique will not be a better choice. The reason is i am validating all the fields present in all the rows at once in a single button click  . Correct me if i am wrong...The reason is if the user doesn't enter the
    value for this column for at least (say 10 rows) then it might fire the validation pop up ten times.This will make the user to clear the validation pop ups first and then enter the values for all the left rows. If i add review comments then it will just add
    a red mark at the top right corner of the cell along with the review comments which will help the user to understand that it is a mandatory field.
    So, Please suggest a solution regarding how to handle the case related to the review comments that overlaps the boundary is not longer visible when scrolled completely.
    Thanks and Regards
    Kamal

  • Integrating a waveform to obtain a running sum of the amplitude

    I am trying to decide the easiest way to integrate a waveform. I have obtained a signal and done a series of waveform operations on it, not I need to sum up the amplitudes of the waveform. I am assuming that the best way to do this is going to be using some sort of integration. I can't seem to get a simple integrator to do this.
    Thanks for your help

    Here is a little more information about the application. I have used data aquisitions to aquire two AC voltage waveforms. I have rectified the waveforms, and summed the two waveforms together. Now I need to take a summation (running sum) of the resulting waveform. Accuracy is somewhat of a concern, as this running sum will be used to calculate a series of costs and usage characteristics.
    Hope this helps by giving an idea of what I am looking to do.
    I have tried to do the numeric integration, but I am having a problem getting the waveform to sample as needed. My other idea was to convert the waveform to (x,y) coordinates and work with that data. I'm not sure what the best way will be.

  • I am trying to use a Futek load sensor example and am running into all sorts of weird issues with the coding.

    Eons ago, when I took the Labview I & II courses, I remember the instructor stating that correct VI's had to have error line.  I downloaded this VI example from Futek's website and the code doesn't  use it. I am trying to utilize it for some data collection rather than have to pay for their software that goes with the sensor.  When I first try to run the VI I get an error, and if I replace the formula they use, then undo the replacement it appears to work. The engineer that I am trying to help out is basically wanting to be able to read and also write a file during test, and I am running into all sorts of problems.  
    If anyone could help me I would greatly appreciate it. 
    Attachments:
    FUTEK LabVIEW 10 Example 2.3.2003.3.vi ‏645 KB

    The first error when I start to run the VI, is states that I need to insert disc 1 of Labview.
    I can usually hit stop and run, stop and run, and then it will start "working".
    Then I get the Formula: Library version is incompatible with XNode version.
    If I replace the fomula, and then undo replace it will correct the broken start arrow.....
    I took the labview 1 and 2 courses 5 years ago, and haven't been a regular user so I am what you would call extremely rusty. 
    I have an engineer here that is wanting to use the sensor for some testing and can't really understand why I am having so many issues.
    Do you know if NI has someone that might be able to work through this with me, or even if there is some Labview consultant that can be paid to help out?
    Thanks,
    Josh

  • Logical Columns - Running Sum & 3Month Rollover

    Hi All,
    Need to build a logical column.
    I have a column with number of units (count distinct) in RPD.
    I need to build a new logical column in the REPOSITORY , such that it has running sum values.... sothat when i pick this #units column and months column in the ANSWERS...I need to get roll over of all previous values for first month.
    Say Jan ---> XXXX units ( summation of all previous available units - few years)
    Feb----> YYYY units ( sum of till jan values & Feb units)
    Mar----> ZZZZ ...etc ( sum of till Feb values & Mar units) so on.
    Based on this newly built column I need to build another column of " 3 months roll over " column.
    Replies appreciated.
    Thanks in advance.

    Hi user11939829m
    So help me understand your new measures a little better. For the sake of this post, let's say your data is like so
    Month Year -- Units
    Jan 2010 -- 1
    Feb 2010 -- 2
    Mar 2010 -- 3
    Apr 2010 -- 4
    May 2010 -- 5
    Jun 2010 -- 6Then let's say you have a report with the above columns and the new running sum columns.
    Month Year -- Units -- Running Sum Units
    Jan 2010 -- 1 -- 1
    Feb 2010 -- 2 -- 3
    Mar 2010 -- 3 -- 6
    Apr 2010 -- 4 -- 10
    May 2010 -- 5 -- 15
    Jun 2010 -- 6 -- 21Now what exactly would your three months rollover be? Would the 3 month rolling sum = running sum for current month + running sum for last month + running sum for last last month?
    i.e.
    Month Year -- Units -- Running Sum Units -- 3 Month Rolling Sum
    Jan 2010 -- 1 -- 1 -- 1
    Feb 2010 -- 2 -- 3 -- 4
    Mar 2010 -- 3 -- 6 -- 10
    Apr 2010 -- 4 -- 10 -- 19
    May 2010 -- 5 -- 15 -- 31
    Jun 2010 -- 6 -- 21 -- 46Not sure what value such a measure would add. Or do you mean 3 month rolling sum would be the running sum for just the last three months (like below)? This makes more sense but in your description, you indicated that you'd build the 3 month rolling sum off of the running sum which confused me a bit.
    Month Year -- Units -- Running Sum Units -- 3 Month Rolling Sum
    Jan 2010 -- 1 -- 1 -- 1
    Feb 2010 -- 2 -- 3 -- 3
    Mar 2010 -- 3 -- 6 -- 6
    Apr 2010 -- 4 -- 10 -- 9
    May 2010 -- 5 -- 15 -- 12
    Jun 2010 -- 6 -- 21 -- 15 Is that what you are going for? Please elaborate.
    Best regards,
    -Joe

  • Problem with sorting dates

    I am taking date from the user in mm/dd/yyyy in the text field.
    Since I am maintaing a document management system,
    I need to sort docs with respect to dates. Latest date first.
    Can anyone help me how do I do this.
    I have to get docs from database(mysql) and I cant use order by ....
    Please help

    How you enter and what gets stored and what gets displayed are controlled by your formating and can be 3 different things.
    If you use an sqldate as a type for the mysql then you have raw date data ( some big integer type). This you push through a format to display.
    Calendar work = Calendar.getInstance();
            java.sql.Date sqldate = new java.sql.Date(work.getTimeInMillis());String displayDate= sqldate.toString();
    gives you todays date in the format yyyy-mm-dd
    to use something else see:
    http://java.sun.com/docs/books/tutorial/i18n/format/simpleDateFormat.html
    In the mySQL dates are stored in a sortable format - how they show is NOT how they are stored.
    I have dates in mySQL also, I have to display the records in ascending or descending order depending on the module.
    Dates are a bitch to work with. You get it working on your local host and then you up load it to your server and it is running with a different date format and everything crashes.
    Just wait till they ask for time, it is even worse.
    so basically
    1- input your date info
    2 - tranfrom it into sql date format
    3 store it inmysql as a date
    4 search it and generate a datset in order of xdate desc
    5 read through the data set and format your date for display
    Lena

  • Display as Running Sum

    I have a measure in the pivot table with the following options enabled:
    - Show data as - Percent of - Section
    - Display as Running Sum
    Also, I have several sections in the pivot table.
    The measure result is correct, but when I add totals, I get a strange result. The total for the first section is 100%, for the second section is 200%, for the third section is 300%, and so on.
    Does everybody get this problem? How can I solve it?
    Thanks.

    I couldn't find a solution... I gave up using "Display as Running Sum" and I created in the criteria tab a formula to solve this (using RSUM BY).

  • Running Sum without analytic function

    Hi
    I have data like below
    Create table Test (Name Varchar(30),M Int, Y Int, Val Int);
    Insert into Test Values ('A',1,2011,2);
    Insert into Test Values ('A',2,2011,2);
    Insert into Test Values ('A',3,2011,2);
    Insert into Test Values ('A',4,2011,2);
    Insert into Test Values ('A',5,2011,2);
    Insert into Test Values ('A',6,2011,2);
    Insert into Test Values ('A',7,2011,2);
    Insert into Test Values ('A',8,2011,2);
    Insert into Test Values ('A',9,2011,2);
    Insert into Test Values ('A',10,2011,2);
    Insert into Test Values ('A',11,2011,2);
    Insert into Test Values ('A',12,2011,2);
    Insert into Test Values ('A',1,2012,2);
    Insert into Test Values ('A',2,2012,2);
    Insert into Test Values ('A',3,2012,2);
    Insert into Test Values ('A',4,2012,2);
    Insert into Test Values ('A',5,2012,2);
    Insert into Test Values ('A',6,2012,2);
    Insert into Test Values ('A',7,2012,2);
    Now based on above data I need to calculate running sum for past 18 Months. Condition is I can not use analytic function or Oracle specific SQL functions (for portability).
    I tries following SQL but it dint work
    select Name,rnk, SUM(val) from (
    SELECT a.Name,a.m,a.Y,b.val, count(*) rnk
    from Test a, Test b
    where (a.Name=b.Name and (a.M <= b.M and a.Y<= b.Y))
    group by a.Name,a.Y,a.m
    order by a.Name,a.Y,a.m
    ) abc
    group By Name,rnk
    Order by Name,rnk
    Can some one give suggastion.

    Hi,
    I don't see what your query or your desired results have to do with the last 18 months. Is the task here to show for a given month (July, 2012, for example) the total of the 18 months ending in that month (February, 2011 through July, 2012 in this case) for the same name? If so:
    SELECT       c.name, c.y, c.m
    ,       SUM (p.val)     AS running_total
    FROM       test     c
    JOIN       test     p  ON     ( ((12 * c.y) + c.m)
                   - ((12 * p.y) + p.m)
                   ) BETWEEN 0 AND 17
    GROUP BY  c.name, c.y, c.m
    ORDER BY  c.name, c.y, c.m
    ;Output:
    NAME                Y          M RUNNING_TOTAL
    A                2011          1             2
    A                2011          2             4
    A                2011          3             6
    A                2011          4             8
    A                2011          5            10
    A                2011          6            12
    A                2011          7            14
    A                2011          8            16
    A                2011          9            18
    A                2011         10            20
    A                2011         11            22
    A                2011         12            24
    A                2012          1            26
    A                2012          2            28
    A                2012          3            30
    A                2012          4            32
    A                2012          5            34
    A                2012          6            36
    A                2012          7            36

  • How can I maintain sorted data when I cut and paste?

    I work almost exclusively with .csv files that I download from the local multi-list service (I'm a real estate agent). I can sort and chart data on the multi-list website but the interface for Apple users is pretty bad (Citrix client running through a gateway). I was looking forward to being able to download and manipulate data on my iBook as well as be able to present it to clients in a polished and professional manner. As far as I am concerned Numbers seems like a Beta at this point. I have sent in feedback and realize that I will never receive a reply from doing so. I really want to like this program but right now I just want to run my iBook over with my truck. Any help will be much appreciated.
    I have three Numbers windows open. One is labeled "Sold" (20 columns, 693 rows+1 header), one is labeled "WE" (20 columns, 679 rows+1 header) and one is an untitled template (20 columns, 1 header). When I sort the data in "Sold" and "WE" to the parameters I need I end up with 18 rows in "Sold" and 22 rows in "WE". My goal is to take the sorted data and paste it into the untitled template.
    I select the 18 rows in "Sold" and then select copy (this takes 25.65 seconds BTW!!!). I go to the untitled template and then paste (20.86 seconds). Numbers pastes the entire 693 rows from "Sold" into the untitled template.
    I have tried to choose rows. I have tried to choose columns. I have selected individual cells and I have also tried to "select all cells". Each time I get a different result on what gets pasted into the untitled template. I have also tried "paste", "paste and match style" and "paste values" each time getting anything but what I need (the 18 sorted rows).
    Does anyone know how to do this?

    Hi,
    you should probablu describe better your actual situation:
    Is the form handler servlet a part of your portal web application?
    Seems like yes, if you use getContextPath() :-)
    then the form handler servlet should be able access the same session object
    through
    request.getSession()
    If this is not the case, than you could get the session id at the time when
    you create the form (in your portlet jsp file) and pass it as request
    parameter to the form handler servlet.
    That form handler servlet can return it later ...
    By the way - the session id is contained in the session cookie, that the
    browser sends everytime to the server in the requests. So when it hits the
    ".../application..." url, the server should automatically recognize to which
    session it belongs...
    HTH
    Ales
    "Mukul Sood" <[email protected]> wrote in message
    news:3cc9fd74$[email protected]..
    >
    Hello All,
    I am submitting to a form from a portlet.
    This formhandler is outside of the portal framework.
    Once I am done with form data processing, I need to come back into theportal.
    For this, I am sending a redirect request :
    response.sendRedirect(
    request.getContextPath()
    + "/application?" +"origin=FillMeta.jsp"+"&event=bea.portal.framework.internal.portlet.event"
    +"&wfevent=fileuploaded" +"&pageid=home"
    +"&portletid=FillMeta"
    However, I am not able to pass the sessionid in sendRedirect.
    How could I pass the sessionid using sendRedirect?
    Would greatly appreciate your inputs or suggestions.
    Thanks.
    Mukul

  • I purchased DreamweaverCS6, installed ok then registered it on-line. Computer   running slow, malware sorted it out, since I re installed CS6, it asks for   registration, puts up 30 day trial,Flags up errors java.

    I purchased Dreamweaver CS6, installed ok then registered it on-line. Computer
    running slow, malware sorted it out, since I re installed CS6, it asks for
    registration, puts up 30 day trial,Flags up errors java.

    Hi Jon,
    Dreamweaver the following errors show up in the JavaScript.Log. I deleted the .dat file but no difference. I am not so confident in how to delete the preference file. I have been following the instructions (see link)
    https://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs6-cc.html
    Windows:
    ~Users\[user name]\AppData\Roaming\Adobe\Dreamweaver CC 2014.1 (folder)
    \HKEY_CURRENT_USER\Software\Adobe\Dreamweaver CC 2014.1 (registry entry)
    When Dreamweaver launches, it creates new preferences files and folder.
    How do I get rid of these errors?
                                            DW JavaScript
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Startup\MMinit.htm
         lineno: 1698
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Startup\AdvRs.htm
         lineno: 12
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Startup\BridgeTalkInit.htm
         lineno: 19
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Startup\BusinessCatalyst.htm
         lineno: 46
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Startup\ICEInit.htm
         lineno: 57
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Startup\RecordsetFind.htm
         lineno: 12
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Startup\SpryInit.htm
         lineno: 53
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\ServerModels\ASP.NET_Csharp.htm
         lineno: 436
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\ServerModels\ASP.NET_VB.htm
         lineno: 477
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\ServerModels\ASP_JS.htm
         lineno: 622
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\ServerModels\ASP_VBS.htm
         lineno: 624
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\ServerModels\ColdFusion.htm
         lineno: 458
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\ServerModels\JSP.htm
         lineno: 491
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\ServerModels\PHP_MySQL.htm
         lineno: 384
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\ServerModels\XSLT.htm
         lineno: 302
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename:
         lineno: 15
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename:
         lineno: 15
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename:
         lineno: 14
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Commands\_onOpen.htm
         lineno: 29
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Menus\MM\LiveView.htm
         lineno: 32
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Menus\MM\Browser_Controls.htm
         lineno: 31
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Toolbars\MM\AddressURL.htm
         lineno: 14
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Toolbars\MM\BCC.htm
         lineno: 32
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Toolbars\MM\WrapTag.htm
         lineno: 45
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Toolbars\MM\EditTitle.htm
         lineno: 39
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Shutdown\BridgeTalkexit.html
         lineno: 18
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    JS Error:
         missing ; before statement
         filename: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Configuration\Shutdown\TeamAdminTempDelete.html
         lineno: 37
         line: Set FSO = CreateObject("Scripting.FileSystemObject")
         at: FSO = CreateObject("Scripting.FileSystemObject")
    Original message----
    From : [email protected]
    Date : 31/03/2015 - 16:08 (GMTDT)
    To : [email protected]
    Subject :  I purchased DreamweaverCS6, installed ok then registered it on-line. Computer   running slow, malware sorted it out, since I re installed CS6, it asks for   registration, puts up 30 day trial,Flags up errors java.
        I purchased DreamweaverCS6, installed ok then registered it on-line. Computer   running slow, malware sorted it out, since I re installed CS6, it asks for   registration, puts up 30 day trial,Flags up errors java.
        created by Jon Fritz II in Dreamweaver support forum - View the full discussion
    Try renaming the configuration folder that holds the .dat file first, before attempting to restore preferences.
    Many times that will take care of it without having to do all the work required after a pref-reset.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7391793#7391793 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7391793#7391793
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Dreamweaver support forum by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • What's equivalent to "Freeze Panes" in Excel?

    I've used Excel for years at work. Now I've not Numbers at home. I can't figure out how to "freeze panes" so, as I scroll down a page, the header row stays visible. Help?

    While Freeze Panes does not exist, Jason over on www.numberstemplates.com
    came up with this solution:
    http://www.numberstemplates.com/forums/showthread.php?t=20
    His demonstration consists of 3 tables. The third table is where the full spreadsheet exists. The second table is a "window" onto the third table. The first table is just two slider bars. As you slide the sliders, the second table adjusts what it is showing in the second table from the data in the third. This makes more sense once you try his example.
    If you are just looking at data, his solution works very well. If you need the freeze panes so that you know what column to input the data into, well, keep hitting that "Provide Numbers Feedback" button. until it appears.

Maybe you are looking for