Workbooks not working in formula mode

Hi ,
      I have created a workbook in formula mode. When I refresh and enter new variables, then those are not being taken into account. Workbook still shows original data with key figures being displayed as "#NV". Please advise.
Full points promised....
Thanks,
Kartheek

Kartheek,
In the following answer, I am assuming that you are using text variables (e.g. in the columns) and that you have used the right mouse click > convert to formula option (rather than the 'Use Formula' setting against the Analysis Grid).
If so, then something like the following is probably occurring:
1. Bear in mind that when you convert to formula the design object is stripped from the analysis grid: i.e. it is no longer updated with the formatting of the query object
2. You run the query for November forecast in the first instance - this is what was there when you converted to formula and therefore data appears because Nov appears in the column heading which the bexget formula points to.
3. You then change the variable value to July, but as the analysis grid is no longer updated the column still says November - therefore the bexget formula returns #NV because it does not have the data for November any longer. If you overwrote the Nov value with July, the data would appear...
To get around this, insert the dataprovider again, do NOT convert this new one to formula and refer your bexget formulas to the columns / rows in this DP as they will be updated dynamically by the system. Therefore as your variable values change so will the column headings etc. and therefore bexget will return the expected data. You can then hide these rows etc.
Hope this helps,
Keith

Similar Messages

  • NTFS is not working in 64bit-mode

    NTFS is not working in 64bit-mode but in 32bit-mode all right !!! ***?!

    dont work int volume with XP and ext volume just sample NTFS file server ! I do not understand ! (((

  • My iPhone will not work in landscape mode anymore, how do i get to work again

    my iPhone will not work in landscape mode anymore, how do i get to work again??

    Double click round home button then slide icon on the bottom of screen to so you go all the way to left.  There you will see a square icon with a circle arrow .  That is the screen rotation control button.  Tap on that to lock/unlock screen rotatio

  • Input Textfields not working in fullscreen mode

    Input Textfields not working in fullscreen mode any one help me.

    Quotes from Adobe:
    "Users cannot enter text in text input fields while in full-screen mode. All keyboard input and key-related ActionScript is disabled while in full-screen mode, with the exception of the keyboard shortcuts that take the viewer out of full-screen mode."
    Check with this article to know more: http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html

  • Alerts not working when formula is in the cell

    I am having a problem where my alerts are not working in the preview mode.  They work fine when I hard code the alert range.  But I need the alert to change under differnt conditions and I am using an IF statement
    the formula is simple
    =IF('TXF Inputs'!D27=3, C34/2, C34)
    output is either 0.375 or 0.375/2 = 0.1875
    if i hardcode the cell with either of these values the alert works, but it does not work with the formula.  The confusing part is that I have other alerts that have IF statements in them and they all work.
    They also work fine in the main screen, ie it shows yellow if my default values =0.1875, but then when I preview or publish they don't work
    bw

    Can u give us the details like which component you are using for alerts.

  • Yoga 2 Pro - Keyboard lock not working in stand mode

    Where can I find the Yoga Utilities suite (Yoga Transitions, Chef, etc.). I just isntalled fresh 8.1 Enterprise and turns out the D:\ partition didn't have the Yoga Utilities available, same on the support site (checked Yoga 13 as well). Pretty dumb, but I can't use the stand since the keyboard doesn't lock

    Hi i have this problem did you find a solution other than lenovo transition because i downloaded that and it still doesnt work....
    can you please help me if you have any ideas.
    my keyboard does not lock or disable in stand mode and sometimes it stops working in laptop mode...
    any help would be greaatly appreciated

  • Wireless works FINE in Safe Mode, WILL NOT work in Normal Mode

    Hi All:
    I've been smashing my head against the wall with this one. I have uninstalled ALL unnecessary applications I could find. Basically all that is left is Windows XP, Drivers and Patches in Add/Remove Programs. I have removed the wireless driver, downloaded a newer one and installed it, still nothing. I have tried it using no Wireless Security on the AP, and also using WPA, and wouldn't work with either in Normal Mode, but worked with both in Safe Mode. I ran a virus and spyware check (before uninstalling Norton), and it came out clean.
    The weirest thing is, sometimes it does connect and get an IP in Normal Mode, but when I run a ping to my local gateway, half the packets are lost (timeout), and the ones that do reply I see a response time ranging from 2ms to 5000ms with no other traffic. I have no idea what can be causing this. Any help would be greatly appreciated.
    If all else fails, I will resort to formatting it and installing WinXP from scratch, since I doubt it's hardware.

    It appears that some device whose driver does not load in Safe Mode malfunctions.
    If this occurs before loading any drivers for added devices, then you'll need service.
       Locate a Service Center
    -Jerry

  • Ctrl+tab is not working in editing mode

    I have JcheckBox and JTable in my JPanel. When user clicks or presses F2 to edit any cell value of the JTable a comboBox will appear with possible values. (This comboBox is coming from table CellEditor). When user presses ctrl+tab from the table focus should transfer to JComboBox all time. It is working only when the user presses ctrl+tab from the table cell which is not in editing mode. If the user presses ctrl+tab from the table cell which is in editing mode (i.e. focus is on the ComboBox of the cellEditor) it does not work. Please help me to find the solution.
    I give a sample code here for your reference.
    public class Frame1 extends JFrame {
    public Frame1()
    super();
    this.setLayout( null );
    this.setSize( new Dimension(400, 300) );
    JTextField ch = new JTextField();
    ch.setVisible(true);
    ch.setBounds(10, 10, 10, 10);
    this.add(ch, null);
    DefaultTableModel tmodel = new DefaultTableModel(3, 1);
    tmodel.setValueAt("0 0 1",0,0);
    tmodel.setValueAt("1 0 1",1,0);
    tmodel.setValueAt("2 0 1",2,0);
    JTable custLayersTable = new JTable(tmodel);
    custLayersTable.getColumnModel().getColumn(0).
    setCellEditor(new ComboEditor());
    custLayersTable.setBounds(new Rectangle(40, 40, 280, 145));
    custLayersTable.setSurrendersFocusOnKeystroke(true);
    this.add(custLayersTable, null);
    public static void main(String[] args)
    Frame1 a = new Frame1();
    a.setVisible(true);
    final class ComboEditor extends AbstractCellEditor
    implements TableCellEditor
    public Component getTableCellEditorComponent(JTable table,
    Object value,
    boolean isSelected,
    int row,
    int column)
    Vector<String> layerValSet = new Vector<String>();
    for(int i=0; i<3; i++)
    layerValSet.add(row+" "+column+" "+i);
    mComboModel = new DefaultComboBoxModel(layerValSet);
    mComboModel.setSelectedItem(value);
    mEditorComp = new JComboBox(mComboModel);
    return mEditorComp;
    public Object getCellEditorValue()
    return mEditorComp.getSelectedItem();
    private DefaultComboBoxModel mComboModel;
    private JComboBox mEditorComp;
    }

    Thanks a lot for your reply.
    Since the textField is in a different class i could not use the transferFocus API directly. I tried the following code in the keyreleased event of Combo Box but it was not working.
    KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent(
    e.getComponent().getParent());
    I also tried the following code in stopCellEditing and is not working.
    KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent();
    Is there any other way to achieve this?

  • BDC is not working in background mode and working fine in Foreground mode

    Hi Experts,
    I have created a BDC in SHDB for the transaction code:CWBQM for creating and deleting the record and converted the BDC recording into the program using call transaction. It is working fine in both foreground and background. When I given the same program for users testing one for the user was able to delete the records but Creation is not working in the same BDC. He is able to create the same records in another PC and the problem is only in that PC and only during the creation of the record. When I change the mode to 'A' mode for testing and request the user to execute and it is working fine the records created successfully. What could be the issue ?
    Thanks,
    Hema

    Hello,
    While recording BDC in SHDB try setting "Simulate background mode" flag and give a try.
    Cheers,
    Nag

  • Buttons not working in fullscreen mode

    Hi everyone,
         I have a site where our Flash content can be sent to fullscreen by the user. When in fullscreen mode, in some computers the buttons within the content and the mouse stop working completely. It still exits from fullscreen by clicking the escape buttons.
    I have a Win XP computer where it works in Firefox and IE but won't work within Chrome. They both have the latest player installed.
    I have a Windows Vista where it does not work in any browser.
    On a Linux box (version 10,1,53,64) it works on any browser.
    On another Win XP computer with version 10.0.45.2 it works with any browsers.
    On some Macs it works, on some it doesn't.
    The swf file was produced with Flash CS3.
    Any ideas?

    For that matter, the "return to menu" which is set to a Main button type, isn't working either.  that is one of the three.  After i had removed the damaged button and copied it from another it worked.  Then i simply edited the text of a different button (mind you one that still works) and the "return to menu" quit along with the bottom 2 buttons.  I just can't figure it out.  I have shut the app down and restarted and nothing seems to be working

  • Why export audio to movie command not visible and detect cuts command is not working in 64bit mode?

    Does anyone know why export to audio disappear from menu in 64bit mode?
    Why detect cuts command is not working well in 64 bit mode?
    I tested on several machines (brand-new iMac, brand-new MacPro with 10.8 OS, MacPro with 10.6.8),and everythig wotks in 32 bit mode. As I switch to 64 bit mode detect cuts only put one marker at the begening of film.
    I also noticed that Firewire output option in 64bit mode is not avaible.
    Is there a certain film format that I have to use to make it work? I tried DV PAL, but I had ther same result.
    Thanks a lot.

    Hi
    Those functions are not available when Logic is running in 64bit mode
    http://support.apple.com/kb/TS3171
    CCT

  • Fixed layout ePub page turn not working in portrait mode

    Hello all,
    First time poster here. I created a childrens book, full color ePub from the Apple 3.1 ePub template. Everything sems to work great in general.  But I wanted the book to be in portrait mode only to get the most out of the graphics. I have the package.opf file set for portrait mode, which shows just one page (correctly), but when turning pages the cool page turn animation does not work when testing on my iPhone5 and an iPad2.  Pages just slide left or right.  But when I change the opf to allow landscape mode, when testing on iDevices, it shows two pages at a time in any mode and the page turn effect works perfectly.  Any way to get the page turn animation to work on just a single page in Portrait mode? To add to it I have an ePub example book from a non-Apple publisher that defaults to single page portrait, and is mostly text (so I'm not sure if its fixed layout or not), and the single page portrait mode allows the page turn animation to work perfectly.
    Thanks all!
    EDL

    The small caps are wrong in Source Sans Regular. This are not correct small caps . This seams to be missing in the font.
    But in italic style you will find correct small caps. They only work in InDesign not in ePub.
    And if you look in my images (first from InDesign, second from Radium - iBooks looks the same) you can see many difference between InDesign and ePub.
    Note the word "pfiffig", the I at the beginning of "Igor" in second paragraph and the "a" in the italic paragraph.
    This is very frustrating! 

  • DispatchEvent not working in debug mode

    Hello,
    I have a localconnection, and when I receive a message from
    the local connection I dispatch an event. However, the dispatch
    event does not work. I step into the code and go into some
    Macromedia code for the "mx.events.EventDispatcher.dispatchEvent"
    and "mx.events.EventDispatcher.dispatchQueue", and when I inspect
    my variables the eventObj has both a target and a type set, but
    when the code tries to access them through eventObj.target and
    eventObj.type it returns null.
    Also, this only happens in debug mode (Debug -> Debug
    Movie) and not in test mode (Control -> Test Movie). In test
    movie the exact same code works flawlessly.

    Im not very sure just try to help but look this one
    mx.utils.Delegate
    i look for some issue with your problem and i think this can help
    you.

  • Estimatedrowcount not working in Batch mode

    We have a page where we conditionally display navigation buttons based on whether a view's estimated row count is gt 10 rows. This is done via JSTL. Prior to getting to the page, a data-action refreshes the three views. In Batch mode, when we re-enter this screen a second time, all views return the estimated row count of RANGESIZE rows. If we reset the iterator range size to 6 or 7, the second time in, it would return 6 or 7 rows and the buttons would be GONE.
    Interestingly enough, the dataaction displays the view object's getEstimatedRowCount(), and it is ALWAYS correct, however the front end does not work.
    When we switch to IMMEDIATE mode, it works fine, however IMMEDIATE mode breaks another part of our application, where we attempt to find a row in an iterator inside of a data action. Of course, that section works fine in BATCH mode, but no IMMEDIATE.
    We saw a thread out there on Metalink regarding this last issue - that setCurrentRowWIthKey returns a JBO-25020 in 10.1.2 in IMMEDIATE mode, but there was no solution.
    Are there some words of advice for this sync mode issue and ways to resolve issues like this?
    Again, assistance would be GREATLY appreciated!!!!

    Are you using the parameter 'INSERT' in 'SAVE_TEXT' FM?
    The module can be used to change existing texts and to create new texts. If it is clear that it is a new text, this can be specified via the parameter INSERT. The result is better performance as a test read is not performed.

  • BDC not working in Background mode

    Hi All,
    I have created a BDC. It is working fine in forground mode but not woking in background mode. Please any one know what could be the problem.
    thanks,
    Shweta

    Hi,
    I think there is some field in your screen is disabled for input. As it will not through you error.
    Please run you BDC in foreground mode and check it and see if you get any message. it will be a sucess message.
    this thing happend to me also as my ship to party was disbled in one of screen of VA02.
    thanks,
    Sarbpreet

Maybe you are looking for

  • What is download error message

    After many attempts to download Flash I was left with a window -Could not retrieve a valid progID of Class: MSXML2.XSL Template.3.0 (original exception : undefined) what does this mean please.

  • How can I install my Officejet J4540 on windows Vista

    I need a fix so I can install my Officejet J4540 All in One Printer on my new system.  I upgraded from XP to Vista & now I can't install it.  HELP!!

  • Data Tracking

    I found out there is a great possibility to keep the history of changes to data in tables, using version-enabled tables with Workspace Manager. However; we have been suggested to use date tracking logic incorporated in the EBS HR modules. What is the

  • Same error cluster for different instrument drivers?

    Hi All... mz question is regarding error cluster wiring for different instrument drivers. As u can see from attached file, i have 3 different devices with drivers. At the beginning i initialize and configure each one by wiring adresses and error clus

  • DM 6 -Impossible to configure Organizer Sync

    First time poster - Long time BB and DM user. As usual, BB Desktop manager is a second rate sync tool.  I just installed DM 6.x on a XP running PC and was "successful" installing it. The issue - and just a little one - I cannot "configure" the Organi