Error in Help Cells - Auxiliary cells moved to help cells in load

Hi Guru,
While checking the report to execute, the workbook was getting locked and is giving blank screen as output. So I changed the optimisation property to 9 and run the regeneration. Then after some time regenartion, I am getting an error popping up as
"Formula term 4AV51CL1HRRY04IFEYTQ5L9U4 003 4EMAD2U9D735WQ84F3YFS08DM is not available". Similar kind of 8 errors. When I click on OK, the query is going to debug mode and while running it is giving output as the same error message..
When I opened the query in designer mode, it is showing error in help cells as
"Errors: Invalid help cell 'Reference Cell' 'Auxiliary Cell 2'; move 'Reference Cell' 'Auxiliary Cell 2' to cells".
I didnt use any help cells in development and there is no error I am getting in development environment. This isse is happening in quality environment.
So I will appreciate, if some body can explain what is HelpCells/AUxiliary cells?
When it is getting created?
How can I resolve this issue?
Good Answers will be rewarded with points.
Regards
Mathew
Note:We are in support package 8 Patch 1of BI AddOn 7.x(based on 7.10) revision 581

Hi Mathew,
  Go to the Properties section in Query on right hand side, scroll down slowly to see .."HELP CELLS". or next to  the TOP menus in Query, you see some icons, make sure in the VIEW MENU, you selected STANDARD TOOL BARS, and below the icons after basic, like open, SAVe, next to those, there are some set of icons, in that 4th icon is FOR CELLS..once you click, it will take you to CELL, CREATION SCREEN, in which each cell you can create SELECTION OR FORMULA OR just select..
below that you can see a NAME called "VIRTUAL" and after that there is an empty WHITE BLANK where you can create "AUXILLARY CELLS" by right clicking, you see options like FORMULA OR SELECTION. THIS can be used on the upper VIRTUAL CELLS ..
i  hope this clears your CELLS ANSD AUXILLARY CELLS.

Similar Messages

  • Help needed urgently .. Please help...

    I am using JTable in my project where i am overriding the default editor to my own custom editor.
    The problem is, when i am using tab key or mouse click, the cursor does not immediately move the next/clicked editable cell. I have to press the tab key twice to move to the next cell. After debugging i saw that the focus goes from the cell editor to the table and then on the second click to the next editor.
    My project requires a single click/single tab key pressed to make the cells editable.
    Please help..
    Thanks in advance..
    Preeti.

    Hi!
    I really have to get this Tab thing working.
    This is what I have tried, and it works partially.
    public boolean isManagingFocus()
    return true;
    public boolean isFocusCycleRoot()
    return true;
    * Captures tabs and moves focus to the next or previous cell, depending
    * on whether the <Shift> key was also pressed (i.e. tab or back tab).
    public void processComponentKeyEvent(KeyEvent e)
    if ( (e.getID() == KeyEvent.KEY_TYPED) && (e.toString().toLowerCase().indexOf(",tab") >= 0) )
    if (e.isShiftDown())
    tabToNextEditableCell(BACKWARD);
    else
    tabToNextEditableCell(FORWARD); // tab
    e.consume();
    else
    super.processComponentKeyEvent(e);
    * Sets editing focus onto next editable cell.
    * When moving forward, traverses cells from left to right then top to
    * bottom
    * @param direction FORWARD or BACKWARD
    private void tabToNextEditableCell(int direction)
    int x = getSelectedRow();
    int y = getSelectedColumn();
    //Added
    clearSelection();
    if ( direction == FORWARD && x < getRowCount() )
    editCellAt(x+1, ATTRIBUTE_VALUE_COL);
    else if (direction == BACKWARD && x >0)
    editCellAt(x-1, ATTRIBUTE_VALUE_COL);
    Let me describe what is happening..
    When I click tab, it moves 2 rows down, The table still highlights the next cell, but since it is not editable, I cant do anything, when I click Tab it moves to the next editable cell, which means that if the current cell is editable the table highlight moves to the next cell (which is not editable), and on the next tab it starts editing the cell.
    I dont know if I made too much sense... but I reallly need help with this.

  • Need help with Report Generation Toolkit: Excel Set Cell Format.vi

    Hi people,
    I've been searching and found this old thread of someone asking what is the input parameter "Number format". And I dont know what should I put in there. I've tried so many possibilities, but nothing works so far, such as:
    0,0
    0,?
    0,#
    #,0
    ?,0
    and also with @, doesnt works. Where would I find help about this parameter?
    I'm using Excel2003, german version, thus local decimal separator is a comma.
    I also found this help from NI, but seems doesnt help me either. Do I miss something important?
    thanks,
    Yan. 

    Hi,
    I've used your suggestion and some numbers in excel doesnt need to get "right click, change to numbers" anymore (green indicators on the left-top side in some cells are gone). But, I think its still not a number, because I cant use a simple formula, such as in cell A10 I type "= A1/2" (cell A10 equals cell A1 divided with 2) . I got error which says its not a number.
    Well, but other thing is found, any format-string I put in the input of Excel Set Cell Format.vi, such as #,########, will be shown the same as "customize #,########" if I right click in a cell in excel and click "Zellen formatieren" (formatting cell). But however, the numbers are still depends on the input of the format I put in the Append Table to Report.vi.
    regards,
    Yan.

  • Help writing a excel function to a cell using powershell

    I have been working on a function that will write worklog information to an excel template. I am able to get it to work but once i added the date column and tried to write a excel function to it I'm getting the below error.
    Exception setting "Item": "Exception from HRESULT: 0x800A03EC"At
    C:\Users\shuppz\Documents\WindowsPowerShell\Modules\Client Config CDRL\Source\Get-Assignment.ps1:1482 char:4
    + $Main.Cells.Item($i, 9) = $DateFunction
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [], SetValueInvocationException
    + FullyQualifiedErrorId : CatchFromBaseAdapterParameterizedPropertySetValueTI
    the excel string i need to add to the cell is to add a date and the string i created is in the below function called $DateFunction.
    Function Create-Worklog
    Param ($NewFile, $DBName, $Work)
    $before = @(Get-Process [e]xcel | %{ $_.Id })
    $ExcelObject = new-Object -comobject Excel.Application
    $ExcelId = Get-Process excel | %{ $_.Id } | ? { $before -notcontains $_ }
    $ExcelObject.visible = $False
    $ExcelObject.DisplayAlerts = $False
    $ActiveWorkbook = $ExcelObject.WorkBooks.Open($NewFile)
    $Main = $ActiveWorkbook.Worksheets.Item('Worklog')
    $Main.Cells.Item(2, 6) = $(Get-Date -f MM/dd/yyyy)
    $Main.Cells.Item(3, 6) = $($DBName.Replace(".accdb",""))
    $i = 6
    ForEach ($W in $Work)
    $DateFunction = "=IF (G$i = " + [char](34) +"Mitigated" + [char](34) + ", TODAY(), IF (G$i = " + [char](34) +"Escalated" + [char](34) + ", TODAY(), IF (G$i = " + [char](34) +"Offline"", TODAY(), " + [char](34) +")))"
    $Main.Cells.Item($i, 1) = $W.Workstation
    $Main.Cells.Item($i, 2) = $W.VulnCount
    $Main.Cells.Item($i, 3) = $W.OS
    $Main.Cells.Item($i, 4) = $W.AuditID
    $Main.Cells.Item($i, 5) = $W.Name
    $Main.Cells.Item($i, 6) = $W.Fix
    $Main.Cells.Item($i, 7) = "Open"
    $Main.Cells.Item($i, 9) = $DateFunction
    $TBString = "{0},{1}" -f $W.Workstation, $W.AuditID
    $Main.Cells.Item($i, 12) = $TBString
    $i++
    $ActiveWorkbook.SaveAs($NewFile)
    $ExcelObject.Quit() | Out-Null
    [System.Runtime.Interopservices.Marshal]::ReleaseComObject($ExcelObject)
    Stop-Process -Id $ExcelId -Force -ErrorAction SilentlyContinue
    If someone can help me figure out how to add this custom excel function. When I run the function everything gets filled out but the date function.

    Try this instead:
    $DateFunction = "=IF (G$i = `"Mitigated`", TODAY(), IF (G$i = `"Escalated`", TODAY(), IF (G$i = `"Offline`", TODAY(), `"`")))"
    You can just escape the " with a backtick ` you don't need + [char](34) +
    You were also missing a double-quote at the end of the formula which is probably what was causing the problem.
    I hope this post has helped!

  • DATAGRID FOCUS ISSUE: Focus got lost, while moving from one cell to another cell using tab key.

    Problem: Focus got lost, while moving from one cell to another cell using tab key.
    Example: In an AdvanceDataGrid, there are three columns having custom ItemRenderer with Spark TextInput control (editable=true & focusEnabled=true).
    When I try to move the focus in with in 2nd, 3rd & 4th column using tab key, focus got lost. Most of the time it’s working, but some time it doesn’t work. There’s no clue as to how may rows/columns the focus has jumped to; or whether the focus has gone out of the data grid altogether.
    Observations: I am not sure whether this problem is because of custom component implementation or it is because of some issue related to Flex Component.
    It only occurs when we perform some actions like some server call, some complex logic execution etc. at the focus out event of itemrenderer.
    There is one property of datagrid i.e. editedItemPosition which contains row & column index of datagrid. On the focus out event, it gets null when focus got lost. We tried to set it, but it didn’t work.
    Steps Performed:-
    1. Currently focus is in 2nd column i.e. Apply to #.
    2. Once I press tab key from 2nd column, it goes to 3rd column which is correct.
    3. Now if I press tab key from 2nd column i.e. Payment #, focus should go to 3rd column, but it goes out of data grid and set the focus of button which is outside data grid.

    http://search.java.sun.com/search/java/index.jsp?qp=&nh=10&qt=%2Bjtable+%2Btab+%2B%22enter+key%22&col=javaforums

  • Error trying to change the value property of a cell with decimals

    This is a script question.
    I’m using a system defaulting to Spanish, so the decimal delimiter is the comma.
    During a script I need to change the property value of a cell multiplying it by -1. As an example, I want to change 1,25 into -1,25.
    This is how try to do it:
    tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
    set selection range to first cell
    set mi_cell to (value of first cell of selection range) * -1
    set value of first cell of selection range to mi_cell
    end tell
    The expected result is wrong provided that the original value of the cell has decimal value. Otherwise is correct.
    See examples of what happen after running this piece of the script:
    1,25 becomes -125,00 instead of -1,25
    6,00 becomes -6,00 (in this case is correct)
    Does anybody know how to solve this problem?
    Thanks in advance.
    Ratz

    This was described here in several scripts.
    Before setting the value of a cell to a number or a date, the value must be coerced to a string.
    It's the only way available to take care of localization features.
    Your script must be
    tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
    set selection range to first cell
    set mi_cell to (value of first cell of selection range) * -1
    set value of first cell of selection range to mi_cell as text
    end tell
    or better
    tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
    set mi_cell to (value of first cell) * -1
    set value of first cell to mi_cell as text
    end tell
    CAUTION : don't code
    tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
    set mi_cell to -(value of first cell)
    set value of first cell to mi_cell as text
    end tell
    which is supposed to do the same but would return the opposite of *_the integer value_* of the cell.
    Yvan KOENIG (VALLAURIS, France) dimanche 13 février 2011 16:06:39

  • Using a Macro to add a Carriage Return after each data entry within all cells of an imported range of cells

    I have a macro that copies data from a Target workbook then pastes the data into a destination workbook.  I then wish to use lookups in the destination workbook to view specific data from the pasted range of data on a separate sheet. 
    The problem is, the cells that contain numbers from the pasted data have the green dogeared error flags associated with the cell. The only way I can make a lookup function work, is to go to each cell and manually enter a carriage return after each entry. 
    The code for the macro is given below.  What can be done so that the pasted data contains no errors associated with the number cells?  Or can a second macro be written to clean the data.  If so can you help me out?  Thanks in advance.
    Kindest Regards
    Sub ImportData()
     ' ImportData Macro allows user to select an Excel workbook (i.e. Orchestrate Excel Output),
     ' then copy & paste it into the MediaSpreadsheet.
        Dim wbk As Workbook
        Set wbk = Application.Run("MediaSpreadsheet_1.0.xlsm!OpenFile")
        If wbk Is Nothing Then
            Beep
            Exit Sub
        End If
        Set wbk = ActiveWorkbook
        Range("A9:S116").Copy
        Workbooks("MediaSpreadsheet_1.0.xlsm").Activate
        Sheets("OrchestrateData").Select
        Range("A1").Select
        ActiveSheet.Paste
        With Selection.Font
            .ColorIndex = xlAutomatic
            .TintAndShade = 0
        End With
        With Selection.Interior
            .Pattern = xlNone
            .TintAndShade = 0
            .PatternTintAndShade = 0
        End With
        Selection.Borders(xlDiagonalDown).LineStyle = xlNone
        Selection.Borders(xlDiagonalUp).LineStyle = xlNone
        Selection.Borders(xlEdgeLeft).LineStyle = xlNone
        Selection.Borders(xlEdgeTop).LineStyle = xlNone
        Selection.Borders(xlEdgeBottom).LineStyle = xlNone
        Selection.Borders(xlEdgeRight).LineStyle = xlNone
        Selection.Borders(xlInsideVertical).LineStyle = xlNone
        Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
        wbk.Close
        Sheets("MediaSchedule").Select
    End Sub
    DAPulliam64

    Hi DAPAugust64,
    The green "dogeared error flags" of the cells means that you paste numbers in these cells, but they're formated as Text.
    So you need to change the cells back to the correct format so that the lookup function works fine. You can simply call this method after pasting:
    ActiveSheet.Cells(1, 1).NumberFormat = "General"
    ActiveSheet.Cells(1, 1) = ActiveSheet.Cells(1, 1).Text
    Or use PasteSpecial method to paste the numbers as well as it's format:
    https://msdn.microsoft.com/en-us/library/office/ff837425.aspx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Struggling with Applying Cell refences of formulas to multiple cells

    Probably a basic question- I am new to Numbers.
    Ive been struggling for ages with applying a formula or cell reference to more than one cell at a time. If I select multiple cells (shift or command clicking them) - then I am unable to create a new 'Cell References'. Pressing the equals = sign merely gives me an error sound. And the formula bar is not accessible
    I have been struggling with this on and off now for about a week. Help - well it doesn't help and implies that I am doing the right thing, but it is not working. - Please help

    marky3 wrote:
    I ve been struggling for ages with applying a formula or cell reference to more than one cell at a time. If I select multiple cells (shift or command clicking them) - then I am unable to create a new 'Cell References'. Pressing the equals = sign merely gives me an error sound. And the formula bar is not accessible
    I have been struggling with this on and off now for about a week. Help - well it doesn't help and implies that I am doing the right thing, but it is not working. - Please help
    A better use for your time was to read carefully *Numbers User Guide* and *iWork Formulas and Fucnctions User Guide*.
    We may insert a reference to a range of cells in a cell's formula but we can't insert a formula in several cells with a single task.
    The correct protocol is :
    insert the formula in the first cell of the range then use the fill down (or fill up or fill to the right or fill to the left) feature.
    Yvan KOENIG (VALLAURIS, France) dimanche 21 février 2010 22:21:40

  • Empty cell until value entered in different cell

    I am trying to create a formula that will leave a certain cell empty until the first cell is populated. The problem is that the cell that first needs to be populated will not have the same value in it. 
    Basically, I am creating a daily chart where I will have to populate numbers in column A, which will then populate all the other columns. Until the cells in column A are populated I want all the other cells empty. The cells in column A will be populated
    with different numbers every day, which is my problem. 
    Additionally, if the cell is then populated, the other cells will have to do calculations. It should be something like "Once the cell in column A is populated with a number, column B will have to calculate A1-C1. Until that point column B will have
    to stay empty.
    I'd be grateful for any help. 

    Enter the following formula in B1:
    =IF(A1="","",A1-C1)
    This formula can be filled down.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Conditional Formatting in one cell with a dates in another cell

    I have a simple spreadsheet that will gauge a project's progress.  I wish to have individual cells change color based on another cell.  I can't get the right syntax in order - groan
    E2 has today's date, =NOW()
    G2 (not started) would change from a color to no color when the start date, F27,  has arrived then
    H2 (started) would change to a color when the date is met, F27, (may be change color as the completed date arrives) then no color when the completed date arrives, F28.
    I2 (completed) would change to a color when the date is met, F28
    When the spread sheet is opened or if I need to change the dates in either of the cells the cells with color gauges will update.
    I am using conditional formating through the ribbon.
    Please help!

    Hi,
    Thank you for posting in the MSDN Forum.
    Since the issue is more relate to the end-user, I'd like to move it to Excel IT pro forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Best regards
    Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Asking if I want to locate the original file I just clicked on. I did move my music from one computer to another and am now getting this error on about 50% of my music. HELP! Suggestions?

    ERROR when I click on newly moved music files.
    "The song ______ can not be used because the original file can not be found. Do you want to locate it?"
    Help!
    I moved my itunes files from one computer to the other and now I'm getting this error on about 50% of my songs when I click on them.

    Moving a library from machine to another can require some preparation if it is to go smoothly.
    As long as the files are organized within a media folder in a way that is vaguley consistent with iTunes, i.e. folders for artists, with subfolders for albums, then my FindTracks script might be able to relink the files.
    tt2

  • Error message - "[app] couldn't be moved to applications."  What does this mean and how do I fix it?

    When I tried to update "Uberstrike" in Mac App store, I received the error that it couldn't be moved to applications.  How do I fix this?

    Install the v10.6.7 combo update. It includes MAS bug fixes that may help.
    http://support.apple.com/kb/DL1361
    It's ok to do this even if you are already running v10.6.7.
    Restart your Mac after  the combo is installed, then try updating the app.

  • Error while adding a connector for SSL..help!!!

    i'm getting this error when i added a connector for SSL and restarted tomcat
    my connector tag is
    <Connector keystorePass="kalima" scheme="https" port="8443" sslProtocol="TLS" redirectPort="-1" enableLookups="true" keystoreFile="Mykeystore" protocol="TLS" keystore="C:\Documents and Settings\santhoshyma\Mykeystore" clientauth="false" algorithm="SunX509" keypass="changeit" secure="true" keytype="JKS">
          <Factory className="org.apache.coyote.tomcat5.CoyoteServerSocketFactory" keystorePass="kalima" keystoreFile="C:\SSLTest\Mykeystore"/>
        </Connector>
    LifecycleException:  Protocol handler instantiation failed: java.lang.NullPointe
    rException
            at org.apache.coyote.tomcat5.CoyoteConnector.initialize(CoyoteConnector.
    java:1368)
            at org.apache.catalina.core.StandardService.initialize(StandardService.j
    ava:609)
            at org.apache.catalina.core.StandardServer.initialize(StandardServer.jav
    a:2384)
            at org.apache.catalina.startup.Catalina.load(Catalina.java:507)
            at org.apache.catalina.startup.Catalina.load(Catalina.java:528)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:324)
            at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:250)
            at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:424)

    The question is answered in CRM 7.0 forum:
    Getting error while adding a custom field (with input help) through AET

  • Error while adding a custom field with Input help via AET

    Hi All,
    I need to add two custom field under Service orders at Item level in component BT140I_SRVP.
    One field is required to have the input search help f4 and autopopulates the second field
    I am able to add one field(not requiring help) successfully through AET .
    I have created one Zsearch_help in se11 and its successfully running  and Autopopulating seocnd field while I am testing it
    While adding second field through AET,I need to enter following details as -
    field label,search relevant ,serach help etc.
    When I type the name of my 'Zsearch_help' against field search help it gives me following error
    'Search help is not compatible'.
    Secondly,not getting getter and setter methods for the attrributes in BTAdminI.
    Last,please tell me if i create zhelp and activate it,would it automatically appear in the list on AETwhile assiging it to input field?
    Please help me out.Kindly be detailed as I am new to SAP CRM.
    Thanks,
    Shivani

    The question is answered in CRM 7.0 forum:
    Getting error while adding a custom field (with input help) through AET

  • I am unable to receive or send email from my IPAD.  The error message says "Connection to server failed".  Help!! geandreamer44

    I am unable to receive or send email from my IPAD.  The error message says "Connection to server failed".  Help!! geandreamer44

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    If that doesn't help, tap Settings > General > Reset > Reset Network Settings
    You will have to re enter your Wi-Fi password.
    If nothing above helped, restart your router.
    No data is lost due to a reset.

Maybe you are looking for

  • Is it possible to use the iMac display as en external monitor?

    I want to connect my powerbook up to an iMac using the display as an external monitor for the laptop. Is this even possible? Any feedback would be appreciated.

  • ONE STEP HELP

    I started to do a One Step From my DV Cam to DVD. I thought i had enough space on my HD but evidently that was not the case. I got a disk full message so i hit the stop button on iDVD. It did not stop so I had to Force Quit. iDVD seemed to have used

  • MFC42u.DLL was not found.

    When I try to open iTunes I get a failure message saying MFC42u.DLL was not found. Any ideas?

  • Help  how can I use a prev tube chanel street in logic express

    hello may english is so bad so sorry , I have a cuestion: I have a power book G4 and digi design Mbox and a dbx 376 vacuum tube channel strip whith spdif w/digital out. I wont to record in may Mbox using the s/pdif but the logic express 7.2 dont reco

  • HT1923 Can not Update to the lastest version of iTunes Windows Vista 32 bit

    I am using Windows Vista Home Premium 32 bit on a compaq laptop. I am trying to update to the lastest version of iTunes. I have tried to remove all of the exsisting componets of itunes but I am not able to remove iTunes and Apple Software Update. I g