Bold Rows in SSRS

Hello,
I have a report that has a series of sub totals. Unfortunately, (due to the complexity of the spec) these sub totals are generated within a stored procedure and not as a group total in SSRS. Is there a way that I can highlight/Bold specific rows in reporting
services? Perhaps it's some expression based on the row value?
Any help would be appreciated.
Dave
Dave SQL Developer

Hi Dave ,
Select the entire Data row of the Tablix/Matrix , Press F4 - > Properties - >  Font - > FontWeight - >  and then try with expression like shown below :
=IIF(Fields!ColumnName.Value = "Subtotal" , "Bold" , "Normal")
In similar way , you can play with Font Size , Style or Text decoration .
sathya - www.allaboutmssql.com ** Mark as answered if my post solved your problem and Vote as helpful if my post was useful **.

Similar Messages

  • Bolding rows in RTF template using tags

    In an rtf template, is there a way to bold an entire row in the table using tags rather than building two rows (one bold, one unbold) and put them in a if condition?
    if
    [BOLD ROW]
    else
    [UNBOLD ROW]
    end if

    This should do it
    <?if@row:number(EMPNUM)=10003?>
    <?attribute@incontext:font-weight;'bold'?>
    <?end if?>
    slot this into a cell on the table row
    Tim

  • Display rows in bold conditionally in SSRS 2008

    Hi All,
    I have a report with three columns..
    Name
    Designation
    Salary
    John
     IT Manager
    10000
    Mike
    Account Manger
    9000
    Rob
    Sales Manager
    8000
    James
    Director
    15000
    Jim
    Marketing Manager
    7500
    I want to display whole row in bold format when Salary < 10000. So, In the above case Mike, Rob and Jim rows should display in bold. I need SSRS expression to achieve it.
    Thanks in Advance,
    RH
    sql

    select the row in the container and click properties icon to open the properties window. then set an expression for the FontWeight property as below
    =IIF(Val(Fields!Salary.Value) < 10000,"Bold","Default")
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Showing report data columns into two rows instead of one row using SSRS 2012

    Hi All,
    I have a ssrs report with 13 columns and I want to show those 13 columns data into two rows instead of showing in one row. please send me step by step process.
    id     fullname     firstname      lastname        mailingaddress     billingaddress       
    city       state       zipcode   
    1       ABC                A                  C                  
        xyz                      xyz123                   york     
    PA          12345    
     homephone     cellphone          workphone          company    
    1234567890      4567890123     0123456789         ABC,Inc
    id     fullname     firstname      lastname        mailingaddress     billingaddress        
    city          state     zipcode   
    2          XYZ               X                  Z                      
         abc                     abc123           lewisburg     
    PA      54321    
     homephone     cellphone           workphone        company    
    4567890123      0123456789     1234567890         xyz,Inc
    id     fullname     firstname      lastname        mailingaddress     billingaddress        
    city          state     zipcode   
    3       BCD                  B                  D                  
    123abc                  xyz123                leesburg       PA     
     54123    
     homephone     cellphone          workphone        company    
    4567895623      0783456789     1238967890       Hey,Inc
    Thanks in advance,
    RH
    sql

    Do a right mouse click on the left, gray row marker => "Insert Row"=> "Inside Group
    - Above or Below", then you get a second detail row.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • How to create 2 conditions from 2 datasets in row visibility SSRS

    Hi Experts, 
     In ssrs, I want to create an expression for the row visibility. But, the expression will contain 2 conditions from different 2 datasets (DealStarts & RowofTrendingVisibility). I have applied a solution from online, but got an error message is 
    "The Visibility.Hidden expression for the tablix ‘Tablix9’ contains an error: [BC30451] Name 'launchdate' is not declared. "
    I think that there is a minor issue in my syntax. Can some one help me to correct it?  Thank you. 
    =iif ((Last(MonthName("DealStarts"))=monthname(month(today())) or launchdate ("RowofTrendingVisibility")<Parameters!StartDate.Value),true, false)

    Hi JTan414,
    I have check the expression you have provided and there are many incorrect using of this expression, please check and do some modification as below:
    For the MonthName function you should follow the grammar like:
    =MonthName(10,True)
    =MonthName(Month(Fields!BirthDate.Value),False)
    ="The month of your birthday is " & MonthName(Month(Fields!BirthDate.Value))
    You have add the dataset name "DealStarts" at the wrong place, it should like below:
    =Last(MonthName(Month(Fields!BirthDate.Value)),"DealStarts")
    or
    =Last(MonthName(Fields!IntegerValueField.Value),"DealStarts")
    This will return the last value from the dataset
    There is no function named launchdate, expression "launchdate ("RowofTrendingVisibility")" is incorrect and you shouldn't add the datasetname in this way.
    If the expression involved of conditions from two different datasets, limit kinds of functions will support to use:
     =Last(Fields!BirthDate.Value,"DataSetName")
    =First(Fields!BirthDate.Value,"DataSetName")
    More details information about how to use expression in SSRS:
    Expression Examples (Report Builder and SSRS)
    If you still have any problem, please try to provide more details information about your requirements and also some sample data.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • How to hide particular data on rows in ssrs reports ?

    Hi,
    i have requirement, in my ssrs report i have columns like sites,Accounts,LOBs and etc.,
    i don't want to show some of the accounts in rows for some particular sites, please check the below image.here i don't want to show the ally finacial and fox tel accounts in the report, and even client  don't want to add accounts to the filters.
    please help me with this issue,how to not show those particular accounts for particular sites in the report.
    *here we are building reports on cube.
    Thanks in advance,
    Naveen 

    I think I would create an internal multivalue parameter with the default values set to the accounts you wish to exclude... call it ExcludeAccts. Then use this parameter to filter out these accounts in the dataset, not the report. I am not an MDX guy but
    in Transact-SQL the filter would be:
    WHERE Account NOT IN (@ExcludeAccts)
    This will return all accounts except for those explicitly excluded in your parameter. The reason I would use a parameter is maintenance. Once the appropriate equivalent statement is added to your MDX, you just need to update the parameter default values
    to change the exclusions rather than editing the MDX each time.
    "You will find a fortune, though it will not be the one you seek." -
    Blind Seer, O Brother Where Art Thou
    Please Mark posts as answers or helpful so that others may find the fortune they seek.

  • Switch columns and rows in SSRS

    Hi,
    I have a report with static columns that looks something like this:
    Date                     
    Column 1            
    Column2             
    Column30
    December 1      
       xxx                     
        xxx                    
        xxx
    December 2        
     xxx                     
        xxx                    
        xxx
    December 31      
    xxx                      
        xxx                    
        xxx
     It is based on SP that produces a temporary table exactly the same way as the report output (my Dec
    1 to 31 rows are details that are precalculated within SP).
    I need to switch columns and rows as my report is getting too wide.
    Does anyone know how it is done in SSRS 2005 (with SQL 2005 data source) without re-writing my SP?
    Thank you in advance!

    Thank you for your reply Jason.
    Unfortunately I do not have tablix within SSRS 2005; I only have matrix and table. For the original report I am using table as it displays data exactly the way it
    is passed from the SP. You cannot switch columns and rows within the table. I tried matrix, but it didn’t work either… Is there any work around that you know of?
    Thanks again!
    Lana

  • Partially Bold Text in SSRS 2005 using Expression ?

    Hi,
    I am using SSRS 2005.
    I have one requirment. I need to Partially Bold some part of Text in column.
    Below is the Example.
    Name < - -- Column in SSRS 2005 Report.
    This column contains combination of Last Name and First Name. All Database record contains Last name , while in some record our requirment is to append First Name with that.
    That is i aleady handled using Nested IIF Expression.
    Now, i want to display appended First Name in normal while all Last Name whihc is Database Field in BOLD Font.
    How is it possible ?

    Hi
    I have just saw a possible solution (well done Hentie Stassen!)
    The best solution of course is to upgrade to SQL 2008 reporting services.
    But, if you are stuck with SQL 2005, try the following:
    We know that a possible solution is to have 2 textboxes.  One for name, one for surname.  Then make the surname bold.  This works, but spacing is a big problem as we saw in other examples on this thread.  Here is the solution for the
    spacing problem:
    The idea is to have 1 textbox for the name, with lots of surname textboxes at different positions and only have 1 of these surname textboxes visible. 
    More detail:
    1. The left-most textbox is the Name field.
    2. Then have 10 or more Surname textboxes, with Bold and displaying the Surname field.  All surnames text boxes overlapping each other, but each one starting about 1cm to the right of the previous one.  The first Surname textbox starts about 1cm
    to the right of the leftmost point of the Name textbox, overlapping most of it.
    3. Now set the visibility property of each of the "Surname" textboxes.  All will be hidden by default.  Set the visibility of the 1st "surname" to true only if the lenth of the name field is less than 2.  Set the visibility
    of the 2nd "surname" to true only if the length of name =2, etc.
    Have a happy day
    Andre Maakal

  • Rows in SSRS report gets overlap on Sharepoint

    Hello Every1,
    My Greetings for the day!!!
    I am Hiren Parikh from India.
    I have developed a SSRS report in SQL Server-2012.
    I have fixed the 1st row(hearder) in my report using the below link
    https://ashwaniashwin.wordpress.com/2013/03/03/keep-column-header-staticfixedvisible-while-scrolling-in-ssrs/
    The report looks fine when I Preview in SSRS. But after deploying the report in Sharepoint when I start scrolling down in Sharepoint the rows are getting overlap.
    Please find the below screen shot for more understanding.
    Can anyone please suggest me how to resolve this issue.
    Regards,
    Hiren Parikh
    Hiren Parikh

     Hello Hiren,
    to repeat header while scrolling is work only in BIDS designer either it is not good to use try below..
    In order to make the column header row repeat on each page, please refer to the steps below:
    Select the Tablix.
    In the grouping pane, click on the small triangle and select "Advanced Mode" to show static members.
    In the row group hierarchy, select the corresponding (static) item of the header row.
    In the Properties grid:
    set KeepWithGroup to After
    set RepeatOnNewPage to True
    For more explanation, please refer to the MSDN blog Repeat Header / Keep Header Visible in Tables in RS 2008 at: http://blogs.msdn.com/b/robertbruckner/archive/2008/10/13/repeat-header-and-visible-fixed-header-table.aspx
    Dilip Patil..

  • Email Excel attachment with a BOLD row

    hi!
    My requirement is that data in an internal table should be sent as an attachment in an email. There are a few records in the internal table which needs to be in bold(i have the logic to figure out whichones). I am using the below FM  .
    CALL FUNCTION 'SO_OBJECT_SEND'
       EXPORTING
         object_hd_change                 = wa_object_hd
         object_type                       = 'RAW'
       TABLES
         objcont                          = i_text
         receivers                        = i_recv
         packing_list                     = i_packing_list
         att_cont                         = i_att
    Does any body have any idea how to bold a few records in the excel attachment?
    I appreciate your suggestions.
    Thanks,
    manasa
    Message was edited by:
            manasa

    Hi Manasa,
    The Code below is for sending Excel attachment in email. Not sure for BOLD...
    You can copy and paste the following codes and execute..
    Hope this will help you..
    TYPE-POOLS: truxs.
    DATA t5 LIKE t005t OCCURS 0 WITH HEADER LINE.
    START-OF-SELECTION.
    SELECT * INTO TABLE t5
    FROM t005t
    WHERE spras = sy-langu.
    DATA wa_data TYPE truxs_t_text_data.
    CALL FUNCTION 'SAP_CONVERT_TO_TXT_FORMAT'
    EXPORTING
    i_line_header = 'X'
    TABLES
    i_tab_sap_data = t5
    CHANGING
    i_tab_converted_data = wa_data
    EXCEPTIONS
    conversion_failed = 1
    OTHERS = 2.
    DATA stmp(4096) TYPE c.
    DATA itmp TYPE i.
    LOOP AT wa_data INTO stmp.
    itmp = STRLEN( stmp ).
    stmp+itmp = cl_abap_char_utilities=>cr_lf.
    MODIFY wa_data FROM stmp.
    ENDLOOP.
    PERFORM send_email.
    *& Form send_email
    FORM send_email .
    DATA docs LIKE docs OCCURS 0 WITH HEADER LINE.
    DATA excelsize TYPE i.
    DATA excel LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    DATA doc LIKE sodocchgi1.
    DATA excelln TYPE i.
    DATA int_objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA int_objhead LIKE solisti1 OCCURS 2 WITH HEADER LINE.
    DATA int_objtext LIKE solisti1 OCCURS 0 WITH HEADER LINE.
    DATA int_reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    DATA bodyln LIKE sy-tabix.
    DATA output_data TYPE ssfcrescl.
    excel[] = wa_data[].
    excel table sizes
    DESCRIBE TABLE excel LINES excelln.
    Body Email
    int_objtext-line = 'Test Body'.
    APPEND int_objtext.
    DESCRIBE TABLE int_objtext LINES bodyln.
    READ TABLE int_objtext INDEX bodyln.
    CLEAR doc.
    doc-doc_size = ( bodyln - 1 ) * 255 + STRLEN( int_objtext ).
    doc-obj_name = ' '.
    doc-sensitivty = 'P'.
    doc-proc_syst = sy-sysid.
    doc-proc_clint = sy-mandt.
    CLEAR: int_objpack, int_objpack[].
    int_objpack-transf_bin = ' '.
    int_objpack-head_start = 1.
    int_objpack-head_num = 0.
    int_objpack-body_start = 1.
    int_objpack-body_num = bodyln.
    int_objpack-doc_type = 'RAW'.
    int_objpack-obj_descr = 'Test'.
    APPEND int_objpack.
    CLEAR: int_objhead, int_objhead[].
    int_objhead = 'Attachment'.
    APPEND int_objhead.
    int_objpack-transf_bin = 'X'.
    int_objpack-head_start = 1.
    int_objpack-head_num = 0.
    int_objpack-body_start = 1.
    int_objpack-body_num = excelln.
    int_objpack-doc_size = excelsize.
    int_objpack-doc_type = 'XLS'.
    int_objpack-obj_name = 'excel'.
    int_objpack-obj_descr = 'test.xls'. "File name
    APPEND int_objpack.
    Set Receiver
    int_reclist-receiver = 'SAPUSER'.
    int_reclist-rec_type = 'B'.
    int_reclist-notif_del = 'X'.
    int_reclist-notif_read = 'X'.
    int_reclist-notif_ndel = 'X'.
    int_reclist-express = 'X'.
    APPEND int_reclist.
    doc-obj_descr = 'Report in Excel'.
    Sending Email
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = doc
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = int_objpack
    object_header = int_objhead
    contents_bin = excel
    contents_txt = int_objtext "Body
    receivers = int_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    ENDFORM. " send_email
    Note:
    - If you are using FM SAP_CONVERT_TO_TXT_FORMAT you will not be able to execute this program in the background.
    - dont forget to change 'SAPUSER' to your SAP user ID
    - you can check the email by using tcode 'SBWP'.
    Reward points if this Helps.
    Manish

  • RDL report(2008).Want to display different number of rows from second page onwards than the first page.

    I have used pagination to display the report data.I have used page break.I want to display 10 records on first page and from second page onwards I want to display 25 records on all remaining pages.
    I followed this link to show 25 records for all page. "http://www.sqlchick.com/entries/2010/9/11/displaying-fixed-number-of-rows-per-ssrs-report-page.html". Now suggest me how display 10 records only on first page having 25 from second page onwards.

    Hi mukesh_harkhani,
    According to your description, you want to insert page break for different number of rows, display 10 rows on the first page and 25 rows on the following pages. After testing the issue in my SQL Server Reporting Services 2008 environment, we can use the
    method below to achieve your requirement:
    In your scenario, right-click the group which contains the expression: =CEILING(RowNumber(Nothing)/25) to open the Group Properties dialog box.
    Modify the original expression to the following in the Group on textbox:
    =Floor((RowNumber(Nothing)+14)/25)
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Select Query with minimum values

    Table name: employess_inout
    Column name: employee_code number(data type)
    IN_Time date(data type)
    Out_time date(data type)
    i want to select only in_time coloumn data with min intime as in one date A employee have more then 2 times in_time entry
    example
    employee_code in_time out_time
    1 18-mar-12 08:15:21 18-mar-12 13:02:01
    1 18-mar-12 14:07:46 18-mar-12 18:01:32
    1 19-mar-12 09:15:11 19-mar-12 12:58:54
    1 19-mar-12 14:10:01 19-mar-12 16:21:57
    1 19-mar-12 16:53:37 19-mar-12 18:15:33
    In above example I only want to select in_time column values which is minimum as 18-mar-12(08:15:21) like wise in date 19-mar-12 minimum value is 09:15:11.
    Please write the script.
    thanks in advance

    Dear Frank Kulash
    the Script is
    Select ei.emp_code,p.ename, d.department_name, ds.designation_name,
    to_char(ei.intime, 'dd') "IN_Date",
    to_char (ei.intime,'hh24:mi') "IN_Time" /*here i used "min" but not solved*/
    FROM einout ei, personnel p,departments d, designations ds
    where ei.emp_code = '470'
    and intime between to_date ('01/03/2012 08:10', 'dd/mm/YYYY hh24:mi')
    and to_date ('21/03/2012 10:00','dd/mm/YYYY hh24:mi')
    and ei.emp_code = p.emp_code
    AND p.dept_code = d.dept_code
    and p.desig_code = ds.desig_code
    group by ei.emp_code,p.ename, d.department_name, ei.intime,ds.designation_name --, ei.outtime
    order by ei.intime, ei.emp_code asc;
    Out Put
    EMP_CODE ENAME DEPARTMENT_NAME DESIGNATION_NAME IN_Date IN_Time
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 01 09:15
    *470      GHULAM YASSEN             INFORMATION TECHNOLOGY         OFFICER                   02          08:58*
    *470      GHULAM YASSEN             INFORMATION TECHNOLOGY         OFFICER                   02          14:04*
    *470      GHULAM YASSEN             INFORMATION TECHNOLOGY         OFFICER                   02          15:11*
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 03 09:06
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 05 17:07
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 06 09:47
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 07 09:36
    *470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 07 19:39* 470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 08 12:16
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 09 09:26
    *470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 09 14:08*
    I want to take out put
    like that
    EMP_CODE ENAME DEPARTMENT_NAME DESIGNATION_NAME IN_Date IN_Time
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 01 09:15
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 02 08:58
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 03 09:06
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 05 17:07
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 06 09:47
    470 GHULAM YASSEN INFORMATION TECHNOLOGY OFFICER 07 09:36
    I only need min time (value) once of A date.
    [Bold rows are no need in output]
    please tell how it will be possible

  • Unable To Cancel Previous Reconciliation

    Hi All,
    We are using SAP Business One 2007 A SP01 PL 05.
    The problem that I currently have is that an external reconciliation was done and it was not done correctly.  When I go to Manage Previous External Reconciliations and select the GL account I find the reconciliation sitting there.  Once I highlight it and click on Cancel Reconciliation nothing happens not even an error message pops up.
    I would like to know if anybody has experienced this problem before and if so what is the solution to fix this problem.
    Any help is greatly appreciated.
    Regards,
    Quinn

    Hi Gordon,
    The message next to the cancel button is "Bold row in a reconciliation is a balancing transaction"
    Yes it is a balanced transaction.   Total on left hand side is 276860.71 and total on right hand side is 276860.71

  • Error message-listcube tcode to execure report on MP

    Hi Experts,
    When I execute a particular MultiProvider to view data via LISTCUBE tcode.
    I get the following error.
    System error: RSDRC / FORM DATA_GET CUBETYPE UNKNOWN
    Message no. DBMAN100
    Diagnosis
    A system error with the following parameters has occurred in the data manager:
    Parameter 1 = &v1&
    Parameter 2 = &v2&
    Parameter 3 = &v3&
    Parameter 4 = &v4&
    This Multiproviders includes 3 cubes (X, Y & Z) and 2 cubes out of 3 (X & Y) reading data from other 2 cubes (A & B) usung FM RSDRI_INFOPROV_READ.
    Reports are also not shoving me correct values in some cases even I can see data in underlying cubes.
    It seems that this is related to this FM. Our system is BW 3.5
    Please help me to resolve this.
    Thanks in Advance..
    Harry
    Edited by: SAP ACCOUNTANT on Apr 10, 2010 1:22 AM

    Hi Maxim,
    Please see result of Debegging...
      nested query error
        WHEN rsdrc_c_exc-nested_query.  
          MESSAGE ID      i_class
                  TYPE    l_type
                  NUMBER  i_number
                  WITH    l_v1 l_v2 l_v3 l_v4
                  RAISING nested_query_error.
      others -> short dump
        WHEN OTHERS.
          PERFORM x_message USING rs_c_true l_v1.
          RAISE inherited_error.
      ENDCASE.
    When I execute F6 (In Debuging mode) at above second bold row,
    I get the SY-SUBRC- 5 and to the the following points
                CHANGING
                  c_first_call         = s_first_call
                EXCEPTIONS
                  no_authorization     = 4
                  OTHERS               = 5.
    Error 5
              CASE sy-subrc.
                WHEN 0.
                WHEN 4.
                  CALL FUNCTION 'RSDRC_CUBE_DATA_GET'
                    EXPORTING
                      i_infocube        = i_infoprov
                      i_cubetype        = s_cubetype
                      i_th_sfc          = s_th_osfc
                      i_th_sfk          = s_th_osfk
                      i_statics_cleanup = rs_c_true
    When I execute 3 times F6 again (In Debuging mode) at above line ( CASE sy-subrc),
    I get the SY-SUBRC- 11 and at the end of following.
        CALL FUNCTION 'RSDRI_INFOPROV_READ'
         EXPORTING
           i_infoprov             = 'ZAAAAAA'
           i_th_sfc               = g_th_sfc
           i_th_sfk               = g_th_sfk
           i_t_range              = g_t_range
           i_reference_date       = sy-datum
           i_save_in_table        = rs_c_false
           i_save_in_file         = rs_c_false
           i_packagesize          = 100000
           i_authority_check      = rsdrc_c_authchk-
         IMPORTING
           e_t_data               = g_t_data
           e_end_of_data          = g_end_of_data
                  CHANGING
                    c_first_call           = g_first_call
                  EXCEPTIONS
                    illegal_input          = 1
                    illegal_input_sfc      = 2
                    illegal_input_sfk      = 3
                    illegal_input_range    = 4
                    illegal_input_tablesel = 5
                    no_authorization       = 6
                    ncum_not_supported     = 7
                    illegal_download       = 8
                    illegal_tablename      = 9
                    OTHERS                 = 11.
                IF sy-subrc = 0.

  • Discard lines from File

    Dear All,
    I have an inbound file to PI.
    In the file, there are few lines which are not to be used ... those appear in the top, bottom as well as somewhere in the middle of the file.
    I know how to take care of undesired lines from the top, but how to take care of those coming in the middle and the bottom? The number of rows for these undesired extra lines in top, middle and bottom of the file will always be fixed.
    Example:-
    TOP_LINE1               (Extra line)
    TOP_LINE2               (Extra line)
    DATA_LINE1
    MID_LINE1               (Extra line - HELP required)
    MID_LINE2               (Extra line - HELP required)
    DATA_LINE1
    BOTTOM_LINE1               (Extra line - HELP required)
    BOTTOM_LINE2               (Extra line - HELP required)
    BOTTOM_LINE3               (Extra line - HELP required)
    As I mentioned earlier, the number of rows for these extra lines will always be fixed.
    Any suggestions / help will be highly appreciated.
    Thanks,
    --Abhi

    Thanks Michal for your reply.
    But my scenario is a little complex. I will explain here.
    1. The file is having data for CONSUMERS and PROVIDERS.
    2. After the top_line undesired rows, is the section for the CONSUMERS.
    3. After the mid_line undesired rows, is the section for the PROVIDERS.
    4. In the file CC, if I specify RECORDSET STRUCTURE - CONSUMERS,,PROVIDERS, - it complains for keyfieldname.
    What am I supposed to put in keyfieldname? I don't have any ...
    A sample of the inbound file:-
    ,,,,,"Division",,,,,,,,,,,,,,,,,,,,,,,,,,,,
    ,,,,,,,,Inventory Report,,,,,,,,,,,,,,,,,,,,,,,,,
    Consumer Owner : ABC    ,,,,
    Consumer :,,,,
    Name,Contact,ID,Addr1,Addr2
    John White,203 111 2222,1234,,
    J D Edwards, 732 020 1121,South West Drive,NJ
    Number of Consumers : 201,,,,
    Providers :,,,,
    ProviderName,Location,LicenseNumber,Contact
    ABC,NJ,1001,1800 000 0001
    DEF,NY,1005,1 888 000 0001
    Number of Providers : 102,,,,
    ,Summary,,,
    I just need the data from the bold rows. Rest of the rows should be discarded. I have desinged the structure like this -
    <MT>
    <rec>
    <Consumer><Name> ... </Consumer>
    <Provider><ProviderName>...</Provider>
    </rec>
    </MT>
    Hope the requirement is clear. Kindly help.
    Thanks a lot,
    --Abhi

Maybe you are looking for

  • Pages export to PDF not showing text

    I've created a fairly basic document and have exported it to a pdf document. when i view it in google docs, it works fine. more importantly, when the pdf is viewed in acrobat, the black text seemingly turns white and becomes "invisible". i know the t

  • Needing a cover for my 13 in macbook pro

    new to mac, wanted to purchase a cover so i dont scratch this laptop any ideas?

  • How do I force JMenu not to open but to forward the click

    Hi! I'm working on a swing application. To control it I use a JMenuBar as a container which contains several JMenu items. I do not use JMenuItems at all! When I click on such a JMenu the click is forwarded using a MenuListener - that all works withou

  • How to increase height of IFRAME without refreshing its contents.

    Hi, I want to increase height of an IFRAME inserted in HTML, presently i am doing this by specifying var frameSrc = myFrame.src; myFrame.height = newHeight; myFrame.src = frameSrc; but as this refreshes the IFRAME i can see the time lag in the loadin

  • Speed limit of UDP over gigabit ethernet

    Dear Community, I am trying to stream 10-20MBytes/sec over IP multicast from one LabVIEW application to several others. I think that UDP is probably the best way to go but I was wondering what kinds of network speeds people have been able to achieve?