Reference partial row in VBA?

Hi, I'm trying to parse through some financial data in Sheet1, and populate other sheets based on criteria.  I did find some vba code that does what I want (almost).  This code copies the entire row to the destination sheet, which works, but I'd
like to put some calculations off to the right side of the data (for totals, etc).  With this code, if the entire row is copied to the destination sheet, it overwrites my formulas.  Can someone tell me how to reference a partial row for both the
source and destination sheets so that it only copies the data I need?  Instead of c.EntireRow, I'm hoping there's a better reference.
Of course, if there's a better way entirely, please share!  Any help is greatly appreciated.
Kevin
Sub OJC_Copy()
Dim MyRange As Range, CopyRange As Range
Set Src = Sheets("Sheet1") 'Source data
Set dst = Sheets("OJC") 'Destination sheet
dst.UsedRange.ClearContents
LastRow = Src.Cells(Cells.Rows.Count, "A").End(xlUp).Row
Set MyRange = Src.Range("H2:H" & LastRow)
For Each c In MyRange
If (c.Value) Like "SJ*" Then
        If CopyRange Is Nothing Then
                Set CopyRange = c.EntireRow
        Else
                Set CopyRange = Union(CopyRange, c.EntireRow)
        End If
    End If
Next
If Not CopyRange Is Nothing Then
CopyRange.Copy Destination:=dst.Range("a1")
End If
End Sub

So, my latest iteration of this is below:  If I set a watch on Src.Range("H" & Myrow).Value Like "MV*"
It does evaluate to "true" when the code hits it, but it then skips right over the last line: CopyRange.Copy Destination:=dst.Range("a1"), and never runs the code in between (doesn't even try).
It also halts with run-time error '91' Object variable or With Block variable not set, Which I think is related to the fact that CopyRange never populates with anything.
As usual, any advice will be greatly appreciated.
Thanks!
Kevin
Sub Filter_MVH()
Dim MyRange As Range, CopyRange As Range
Set Src = Sheets("Sheet1") 'Source data
Set dst = Sheets("MVH") 'Destination sheet
dst.Range("A:L").ClearContents
For Myrow = 2 To LastRow
If Src.Range("H" & Myrow).Value Like "MV*" Then
    If CopyRange Is Nothing Then
        Set CopyRange = Src.Range("A" & Myrow & ":L" & Myrow)
    Else
        Set CopyRange = Union(CopyRange, Src.Range("A" & Myrow & ":L" & Myrow))
    End If
End If
Next Myrow
CopyRange.Copy Destination:=dst.Range("a1")
End Sub

Similar Messages

  • Partial row at end of file - best way to handle?

    Hi,
    I have a file where there is a partial row at the end. It doesn't cause an error, but I get a "partial row" warning during execution.
    What do most people do with these partial rows? Do they just ignore them as long as they don't cause errors? Or is it better to handle the partial row with a conditional split, for example?
    Just wondering what other people's thoughts on this are. I tend to be of the "get rid of it" camp, but maybe that's overkill? Just looking for opinions, best practices.
    Thanks

     sadie519590 wrote:
    It's only the last row.
    If you have partial rows in the middle of the file, this causes an error (unless you're ignoring errors). But SSIS ignores the partial row at the very end without any special error handling.
    Then you can leave it.  No harm, no foul.  Why is the last row incomplete though?  Can it be fixed at the source?

  • Invoice reference : partial and full payment

    Hi experts, i'm a newbie in FIAP but i need an suggest :
    So , i find that the field "Invoice Reference " in BSAK table is not filled for a residual payment when there is a partial payment and when there is a full payment.
    So , if i would determinate the invoice from a record on bsak table that rappresent a residual payment or a full payment, i should use this parameter: clearing doc , company code and vendor?
    Thank you very much.
    Regards.
    Andrea

    Ok.
    But on BSAK table when clear more than one invoice , i find different record with same clear document:
    Suppose that the doc: 499 clear the invoices: F1 , F2 , F3 .
    F1 -value 30
    F2 -value 35
    F3 -value 40
    In the bsak table, i find this:
    doc  pos    cleardoc         value
    499   1         499        30                    rec1
    499   2         499        35                   rec2     
    499   3         499        40                   rec3     
    f1     1          499
    f2     1          499
    f3     1          499
    So, from the record rec1 or rec2 or rec3, how can i determinate the relative invoice cleared??
    Thanks .
    Andrea

  • Extra blank rows in vba spreadsheet zoom

    Here's how it happens:
    - in Excel 2003 VBA
    - two row dims
    - right row dim is fixed list of mbrs
    - left row dim is single member zoom
    - sheet has other stuff on it, so retrieve range is not entire sheet
    - top of retrieve range is in row 6
    so when I call EssVZoomIn() in this situation, the result is that there are 5 blank rows between each instance of a member in the left row dim. That is the exact number of rows above the retrieve range in this sheet, and it turns out that is the variable: if I move the retrieve range to row 7, I get 6 empty rows everywhere.
    I have tried every spreadsheet option that would appear to have any impact, no joy. I have tried using a free form mode retrieve, which works, but then I can't preserve formulas in the sheet, which I need to do.
    I can work around this, but what a silly thing to have to do, like do the zoom in a separate sheet, or remove all the empty rows after the zoom. Does anyone have any ideas about how to disable this "feature"?
    Thanks!

    Dheepan wrote:
    I am trying to spool a table result to a .dat file.
    The problem is the output spool file has 3 rows after each row with a column having its row data split as 3 for every enter key in the data.
    Eg:
    Original data as in DB
    A B C
    1 1 ABC DEF GH
    2 1 DEF GHI JK
    SPOOL FILE O/P
    A | B | C |
    1 | 1 | ABC |
         | |DEF |
         | |GH |
    2 | 1 | DEF |
         | | GHI |
         | | JK |
    Thanks,
    Dheepancan you post script?
    BTW, have you included SET TRIMSPOOL ON ?
    When you have moved your question, Close that thread ORACLE SPOOLING extra blank rows
    Edited by: CKPT on Mar 24, 2012 10:07 PM

  • How to reference table rows added using addInstance?

    OK, this one's probably quite simple, but I'm at wit's end . . . .
    I have a table with body rows that can be added using addInstance.  what I can't figure out is how to reference the newly added rows and teh fields within them.  If the row reference for the inital row before addInstance is:
    Table.Row1.CellName before the addInstance, after the addInstance wouldn't it be Table1.Row1[0].CellName and the newly added row be Table1.Row[1].CellName?  I try that and the debugger tells me that Table1.Row1[1].CellName has no properties.
    I basically need to determine whether the user has filled out anything in the added rows and I'm having a devil of time figuring out how to reference the added rows and their cells.  Thanks in advance!

    Your logic is correct but to reference that som expression you woudl have to use this notation:
    xfa.resolveNode("Table1.Row[1].CellName").method or property
    The reason for this is the use of the square brackets. Javascript interprets this an an array. When you use the resolveNode method you can pass a string and hence the square brackets get interpretted correctly.
    Paul

  • Displaying rows with reference to row count.

    Situation :
    I am trying to display data which are or of 820 rows by default.
    When user select some data , I will display some data but if he not selecting any data then it is displaying all 820 rows.
    So i used a count option where i wrote a code
    <?choose:?><?when:count(_Company_Prompt_._PL_Unit_Number_and_Name_-Prompt)=820?><?'ALL'?><?end when?><?otherwise:?><?_Company_Prompt_._PL_Unit_Number_and_Name_-Prompt?><?end otherwise?><?end choose?>
    for the field count CompanyPrompt_._PL_Unit_Number_and_Name_-Prompt
    But it works fine if i dont use repeating group but that no use because it will show all for report defaults but when user select more than one , it still display only one row.
    i am try to use same code with F <?for-each:PARAMETER_FOR_BUSINESS_UNIT_ROW?> E
    The code for f is <?for-each:PARAMETER_FOR_BUSINESS_UNIT_ROW?>
    the code for <?for-each:PARAMETER_FOR_BUSINESS_UNIT_ROW?> is given above
    the code for e is <?end for-each?>
    how can I fix this,
    Thanks
    Aj

    I don't quite understand your requirement clearly as stated, I am guessing that you are using a dashboard prompt and your answers request is filtered based on the prompt.
    Based on the default value, all rows are returned, and if the user selects some value from the prompt, data is filtered.
    Within the template, if the count is equal to 820 then you want to show the text 'ALL' otherwise show all rows?
    you could try the following: Declare a variable like so:
    <?variable:myvar;count(_Company_Prompt_._PL_Unit_Number_and_Name_-Prompt)?>
    then check if this variable value is equal to 820 then print the text 'ALL' or do your regular logic..
    <?choose:?>
    <?when:$myvar=820?><?'ALL'?>
    <?end when?>
    <?otherwise?>
    <? other logic?>
    <?end otherwise?>
    <?end choose?>
    You can also use two templates within the main RTF and call them as appropriate based on the count check.
    Hope this helps. Sorry if I misunderstood your requirements.

  • JTable: How to reference the selected row during a drag?

    I am implementing Drag and Drop on the rows of a JTable.
    I want to change the background colour of each successive JTable row ("highlight" the row) as another row is dragged over it (I already have similar functionality implemented in a custom TableCellRenderer, but the Drag and Drop code knocks it out) .
    I have run into a problem: All of the JTable methods refer to the rows as ints--0, 1, 2, etc.
    Here is my approach:
    I get the reference to the row by using:
         "int dragEnteredRow = table.rowAtPoint( e.getPoint() ); "
    With the intention to use the variable dragEnteredRow to change each row's foreground colour:
         "dragEnteredRow.setForeground( selected ); "
    That gives me an error message from the compiler:
    "... Can't invoke a method on a int.
         dragEnteredRow.setBackground( Color.yellow ); ... "
    Here is some more of the code (it implements the Macintosh Drag and Drop API):
    [javacode]     
    "     public boolean dragMoved( DragEvent e ) {
         dragEntered( e );
              return true;
         public boolean dragEntered( DragEvent e ) {
         int dragEnteredRow = table.rowAtPoint( e.getPoint() );
              dragEnteredRow.setBackground( Color.yellow ); // These two lines fail at the compiler
    //     table.rowAtPoint( e.getPoint() ).setBackground( Color.yellow );
              if ( dragEnteredRow == -1 ) {;
                   System.out.println( "out of bounds !!" );
              } else {               
                   System.out.println( "Drag Entered at : Row" + dragEnteredRow ); // This test code works
                   System.out.println( "" );
                   return true;
    [javacode]
    My Question: What is the proper approach to solving this problem?
    Many thanks in advance for a solution.
         

    the method rowAtPoint(e.getPoint()) returns an integer with the index of the row at point e, and not the instance of the row.
    You have to use this integer to reference the row through a method like getValueAt(row int,col int) of the DefaultTableModel
    Hope this helps

  • To reference Interactive Report filtered rows in PL/SQL

    Hello All,
    I am using an interactive report on a page. I want a page process to reference the rows filtered dynamically by an end user. The report to be referenced is not saved but merely filtered from the primary report.
    How do I reference the filtered rows in pl/sql. I have searched through the forum and can't find a concise answer.
    Br,
    Ben.

    Hi Trent, Jari, Ben
    Update the IR's SQL to include APEX_ITEM.HIDDEN(1, primarykeyfieldname) || firstdisplayedfieldname columnheading and then use APEX_APPLICATION.G_F01 to loop through the results using PL/SQL to get the primarykeyfieldname values displayed and retrieve the rest of the data from there if necessary.
    That will still require that all records are displayed, though.
    Something like: http://apex.oracle.com/pls/apex/f?p=267:237
    The SQL is:
    SELECT APEX_ITEM.HIDDEN(1, EMPNO) || EMPNO EMPNO, ENAME
    FROM EMPand the process is:
    DECLARE
    vTEMP VARCHAR2(4000);
    BEGIN
    vTEMP := '';
    FOR x IN 1..APEX_APPLICATION.G_F01.COUNT
    LOOP
      vTEMP := vTEMP || APEX_APPLICATION.G_F01(x) || CHR(13) || CHR(10);
    END LOOP;
    :P237_SELECTED := vTEMP;
    END;which just outputs the EMPNOs showing on the page into a Display Only page item.
    Andy

  • Jdev11.1.1.0.1 How can i navigate to get details of the table selected row?

    hi ,
    i'm using jdeveloper 11.1.1.0.1 , and i want to navigate from a page containing a panel collection which contains a table with single row selection to another page contains the details of this selection. in 10g i was do that using #{row.rowKeyStr} in the from value of the buttons action listner but here this is not valid a red line appears when i write this in the from value , in the expression builder when i expand the jsp objects i can't find row node also if i expand the bindings node i can't find my attributes!! .
    please some one help me to do my task .
    thanks for care ,
    Ahmed Oraby

    Hi All,
    I am also trying to access the #{row.some_Attribute} of a table of the selected row. But it does not run it correctly. It says the reference to row can not be found. Any idea how to access the #{row.something} in ADF 11g.
    Thanks,
    Neeraj

  • How to find index of row in dynamic table?

    Our form has a table to which the user can add rows.  We want to be able to edit the custom help text of each field in the row to add the row number for accessibility.  But need the index number of the row to reference the row of the fields. And we can't figure out how to get it.
    We have tried both the field initialize and field layout events, but our property for index is not being recognized. For the initialize event of one of the fields in the row, we wrote this code:
    xfa.host.messageBox("We are in the initialize event for this field.");
    var thisRow = this.parent.index;
    xfa.host.messageBox(thisRow);
    We have the table set up with 8 intial rows. The first message pops up 8 times, but the second doesn't appear at all.  How can we get the number of the row we are addressing?
    Thanks.

    Not sure what's going on there but messageBox() is throwing an error for some reason (use CTRL-J in Acrobat to open the Console):
    GeneralError: Operation failed.
    XFAObject.messageBox:3:XFA:form1[0]:subMain[0]:Table1[0]:Row1[1]:TextField1[0]:ready
    Argument mismatch in property or function argument
    It works if you add some text:
    xfa.host.messageBox("Row Number: " + thisRow);
    app.alert() works: app.alert(thisRow);
    And console.println() works (less annoying for testing than popups - open the Console window to see the results):
    console.println(thisRow);
    Ah, just figured it out - messageBox() doesn't seem to like a number first, it's expecting a string. The following works with your original script:
    var thisRow = this.parent.index.toString();

  • Inserting rows in PL/SQl table

    Hi,
    I have a PL/SQl table which i populated through bulk collect and now i am trying to loop through the table (actually quite a few nested loops) ... Now inside one of my loops i might need to insert a new row by splitting field in the existing row in the table. Can I insert the row in the pl/sql table within the loop without affecting the 'FOR i IN tab.first..tab.last' loop ??
    Also what would be the index of such a row inserted in the table. Can I access it with tab.last+1 (doesnt look like it can be done if i insert in the various levels of loops).
    OR
    If I insert the rows insde the nested loops , then I can access the new rows once I close all the loops and open a fresh loop ??. Will the new rows be at the last of the table.
    Any help will be appreciated ...

    user2309906 wrote:
    Hi,
    I have a PL/SQl table which i populated through bulk collect and now i am trying to loop through the table (actually quite a few nested loops) ... Now inside one of my loops i might need to insert a new row by splitting field in the existing row in the table. Can I insert the row in the pl/sql table within the loop without affecting the 'FOR i IN tab.first..tab.last' loop ??
    Also what would be the index of such a row inserted in the table. Can I access it with tab.last+1 (doesnt look like it can be done if i insert in the various levels of loops).
    OR
    If I insert the rows insde the nested loops , then I can access the new rows once I close all the loops and open a fresh loop ??. Will the new rows be at the last of the table.
    Any help will be appreciated ...With an associative array:
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    type t_arr is table of varchar2(10) index by pls_integer;
      3    v_arr t_arr;
      4    v_cnt number := 0;
      5  begin
      6    -- populate the associative array
      7    for i in (select ename from emp)
      8    loop
      9      v_cnt := v_cnt + 1;
    10      dbms_output.put_line('Populating: '||i.ename);
    11      v_arr(v_cnt) := i.ename;
    12    end loop;
    13    -- now process the associative array
    14    for i in v_arr.first .. v_arr.last
    15    loop
    16      dbms_output.put_line('Processing: '||i||':'||v_arr(i));
    17      if v_arr(i) IN ('KING','TURNER','JAMES') then
    18        v_arr(v_arr.last+1) := v_arr(i)||to_char(i);
    19        dbms_output.put_line('Added: '||v_arr.last||':'||v_arr(i));
    20      end if;
    21    end loop;
    22    -- now what's in the associative array?
    23    for i in v_arr.first .. v_arr.last
    24    loop
    25      dbms_output.put_line('Result: '||i||':'||v_arr(i));
    26    end loop;
    27* end;
    SQL> /
    Populating: SMITH
    Populating: ALLEN
    Populating: WARD
    Populating: JONES
    Populating: MARTIN
    Populating: BLAKE
    Populating: CLARK
    Populating: SCOTT
    Populating: KING
    Populating: TURNER
    Populating: ADAMS
    Populating: JAMES
    Populating: FORD
    Populating: MILLER
    Processing: 1:SMITH
    Processing: 2:ALLEN
    Processing: 3:WARD
    Processing: 4:JONES
    Processing: 5:MARTIN
    Processing: 6:BLAKE
    Processing: 7:CLARK
    Processing: 8:SCOTT
    Processing: 9:KING
    Added: 15:KING
    Processing: 10:TURNER
    Added: 16:TURNER
    Processing: 11:ADAMS
    Processing: 12:JAMES
    Added: 17:JAMES
    Processing: 13:FORD
    Processing: 14:MILLER
    Processing: 15:KING9
    Processing: 16:TURNER10
    Processing: 17:JAMES12
    Result: 1:SMITH
    Result: 2:ALLEN
    Result: 3:WARD
    Result: 4:JONES
    Result: 5:MARTIN
    Result: 6:BLAKE
    Result: 7:CLARK
    Result: 8:SCOTT
    Result: 9:KING
    Result: 10:TURNER
    Result: 11:ADAMS
    Result: 12:JAMES
    Result: 13:FORD
    Result: 14:MILLER
    Result: 15:KING9
    Result: 16:TURNER10
    Result: 17:JAMES12
    PL/SQL procedure successfully completed.With standard array (PL/SQL table):
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2    type t_arr is table of varchar2(10);
      3    v_arr t_arr;
      4    v_cnt number := 0;
      5  begin
      6    -- populate the pl/sql table
      7    select ename bulk collect into v_arr from emp;
      8    -- now process the pl/sql table
      9    for i in v_arr.first .. v_arr.last
    10    loop
    11      dbms_output.put_line('Processing: '||i||':'||v_arr(i));
    12      if v_arr(i) = 'KING' then
    13        v_arr.extend;
    14        v_arr(v_arr.last) := 'PRESIDENT';
    15      end if;
    16    end loop;
    17    -- now what's in the pl/sql table?
    18    for i in v_arr.first .. v_arr.last
    19    loop
    20      dbms_output.put_line('Result: '||i||':'||v_arr(i));
    21    end loop;
    22* end;
    SQL> /
    Processing: 1:SMITH
    Processing: 2:ALLEN
    Processing: 3:WARD
    Processing: 4:JONES
    Processing: 5:MARTIN
    Processing: 6:BLAKE
    Processing: 7:CLARK
    Processing: 8:SCOTT
    Processing: 9:KING
    Processing: 10:TURNER
    Processing: 11:ADAMS
    Processing: 12:JAMES
    Processing: 13:FORD
    Processing: 14:MILLER
    Processing: 15:PRESIDENT
    Result: 1:SMITH
    Result: 2:ALLEN
    Result: 3:WARD
    Result: 4:JONES
    Result: 5:MARTIN
    Result: 6:BLAKE
    Result: 7:CLARK
    Result: 8:SCOTT
    Result: 9:KING
    Result: 10:TURNER
    Result: 11:ADAMS
    Result: 12:JAMES
    Result: 13:FORD
    Result: 14:MILLER
    Result: 15:PRESIDENT
    PL/SQL procedure successfully completed.
    SQL>So, in answer to your questions...
    Inserting additional rows in the array during the loop will effect the "last" value and alter the array. If you need to avoid this effect, store the "last" value in a variable and loop up to that value of the variable.
    New rows will generally be additional rows on the end of the array unless you are using associative arrays which will then depend on how you reference the rows in the array.

  • How to reference arrays dynamically?

    I have developed a sql query with a dynamic number of rows and columns. I know I can reference the rows by using a ' for i in 1..htmldb_application.g_f01(i) loop' and this is fine. I know that with a query with a standard number of columns you could reference them as htmldb_application.g_f02(i), htmldb_application.g_f03(i) and so on. However, in my case, I have a dynamic number of columns and they are in fact named f02, f03, f04 and so on. I could have 10 or I could have 15 of these. My problem is that now to get the values associated with these columns I have to dynamically determine the names of these columns through a string (ie mstring := 'htmldb_application.g_f0'||colnum||'(i)'') For each row I loop through and build this string which references each of the columns in my array. The problem is that this returns htmldb_application.g_f02(i) as the value and not the actual value of the field.
    I thought I could do 'select htmldb_application.g_f02(i) from dual' and then do an execute immediate statement to return the value but this returns an error saying something to the effect that the function does not exist. So without hardcoding the actual names is there a way to reference each of these columns dynamically?

    [b[In your OnLoad function try replacing:
    var arrName:String = folder+"_thumbs";
    with this:
    var arrName:Array = new Array();
    arrName = this[folder+"_thumbs"];
    That should work, and remember to change the variable
    declaration:
    var arrImages:MovieClip = new Array();
    to:
    var arrImages:Array = new Array();

  • Snap all rows in table/document

    I've been working through the book  "Scripting InDesign with JavaScript." The script is originally for snapping columns, but I'm trying to snap all the rows in tables so I've changed the references to "rows." I've worked through to this point, but it still snaps only the row where the cursor is located. I'm not sure what I need to alter in order for it to snap every row.
    //from Scripting InDesign with JavaScript
    var myStories = app.activeDocument.stories
    for( var i = 0; i < myStories.length; i++ )
        for( var j = 0; j < myStories[i].tables.length; j++ )
        for( var k = 0; k < myStories[i].tables[j].rows.length; k++ )
            snapRow( myStories[i].tables[j].rows[k] )
    function snapRow( myRow )
    // get the size of em space
    var em = myRow.cells[0].insertionPoints[0].pointSize;
    myRow.height = '2p3';
    // get horizontal offset of last insertion point in each cell
    var myRightPosArray = myRow.cells.everyItem(
            ).insertionPoints[-1].horizontalOffset
    // find the biggest value
    var longest = maxArray( myRightPosArray )
    // get position of left side of Row
    var myLeftPos = myRow.cells[0].insertionPoints[0].horizontalOffset
    // set Row height
    myRow.height = (( longest - myLeftPos ) + em )
    function getRow()
    var mySel = app.selection[0];
    if( mySel.parent.constructor.name == 'Cell' )
    return mySel.parent.parentRow
    else if( mySel.constructor.name == 'Cell' )
    return mySel.parentRow;
    alert( 'Cursor not in a table\ror illegal selection' );
    exit();
    function maxArray( myArray )
    var temp = 0
    for( var i in myArray )
    temp = Math.max( temp, myArray[i] )
    return temp

    Hi,
    Exam a function snapRow() ==> snapColumn() in original, probably.
    It is a horizontalOffset property used to find a widest cell in column.
    This is useless if the goal is to snap row's height.
    There is  .autoGrow property useful for rows.
    You could combine this with maximumHeight & minimumHeight (or not)
    So simplest way :
    snapRow(myRow) {
         myRow.autoGrow = true;
    getRow() function is useless too
    Jarek

  • Using Row Range in GetCell

    Hey all,
    I'm trying to reference a row value in Grid1 from a text column in Grid2. The referenced row in Grid1 is expandable, so I'm using a range, but I'm getting
    Error: Invalid arguments
    Here's what I have
    <<GetCell("Grid1", row[1(2:10)], Cur, Cur)>>
    Is my syntax wrong?
    Eric

    Thanks for your reply. My example should have referenced Grid2, but the concept is the same. Grid1 and Grid2 have identical row/column dimensions and member selections. The only difference is that they have different gridPOV values. So, yes, the number of rows and their expansions should be identical. This may be wishful thinking, but my idea is to call that text function as a "Replace" in one or more Grid1 cells, but referencing Grid2 data like this
    GetCell("Grid2", row[Cur(2:10)], Cur, Cur)
    The desire here is to basically have one grid, Grid1, that displays rows from 2 different POVs, Grid2 would be hidden.
    Eric

  • Report weblink prompt row id - Custom Object

    I am trying to run a report on a custom object and want to prompt the row id for the custom object. I can't seem to get it to filter with the prompt. I don't know if I need to reference the row id field by Custom Object 1.Row Id or by the renamed custom object. Here is my syntax so far.
    https://secure-ausomxgea.crmondemand.com/OnDemand/user/ReportIFrameView?SAWDetailViewURL=saw.dll?Go&Path=%2fshared%2fCompany_AGEA-108HQA_Shared_Folder%2fEC-Agenda+v3&Action=Navigate&P0=1&P1=eq&P2=Custom+Object+1.%22Row+Id%22&P3=AGEA-1510WX

    I changed the end to make the weblink
    https://secure-ausomxgea.crmondemand.com/OnDemand/user/ReportIFrameView?SAWDetailViewURL=saw.dll?Go&Path=%2fshared%2fCompany_AGEA-108HQA_Shared_Folder%2fEC-Agenda+v3&Action=Navigate&P0=1&P1=eq&P2="Custom Object 1".ROW_ID&P3=%%%ID%%%
    The built link is
    https://secure-ausomxgea.crmondemand.com/OnDemand/user/ReportIFrameView?SAWDetailViewURL=saw.dll?Go&Path=%2fshared%2fCompany_AGEA-108HQA_Shared_Folder%2fEC-Agenda+v3&Action=Navigate&P0=1&P1=eq&P2=%22Custom+Object+1%22.ROW_ID&P3=AGEA-15AJ1L
    The report is now filtered!!
    I really appreciate the help as I knew it had to be something small. I will note that the field name can be taken exactly out of the function from the column in the report.

Maybe you are looking for

  • Problem in Calculated Key Figure in BEx 7.0

    Hi All, In Bex 7.0 We have a requirement where we need to display a key figure which is having unit price of an Article. In our InfoProvider we have Article, Store and Date and the report is based on Article. As we have to display only the latest pri

  • Pb : Air runtime update on badger + send variable to Air soft

    Hello, I've a problem with air runtime update. My badger send a variable in my air software with "applauncharg" or "appinstallarg", everything works. But when  i load my air software with the badger and that an air runtime update is available, when t

  • Loading is taking forever!!

    Whenever I am trying to watch my friends videos on YouTube, or when I am trying to download anything at all, it seems to be taking forever. This is expecially true for anything on the internet. What could be the problem?? I cant watch a 2 minute with

  • Why is the iPod touch 4th small

    Why is the iPod touch 4th small

  • Can my computer be saved?

    I've got a Vista here that I purchased about three years ago. I've been having some troubles with it, and a couple of months ago it completely died. I tried using the system recovery discs, but no luck. I just bought a new harddrive, as I was told th