Jump to content
We've recently updated our Privacy Statement, available here ×

deivy.ramirez

Members
  • Posts

    1
  • Joined

  • Last visited

deivy.ramirez's Achievements

Newbie

Newbie (1/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. I have a ,jrxml file. <?xml version="1.0" encoding="UTF-8"?><jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="StatiscalInformationOperationBranchInsurance" language="groovy" pageWidth="70" pageHeight="70" columnWidth="50" leftMargin="0" rightMargin="0"topMargin="0" bottomMargin="0" isIgnorePagination="true"> <property name="ireport.zoom" value="1.5"/> <property name="ireport.x" value="0"/> <property name="ireport.y" value="0"/> <property name="net.sf.jasperreports.export.text.character.width" value="7.238"/> <property name="net.sf.jasperreports.export.text.character.height" value="13.948"/> <field name="branch_code" class="java.lang.String"> <fieldDescription><![CDATA[branch_code]]></fieldDescription> </field> <field name="state_code" class="java.lang.String"> <fieldDescription><![CDATA[state_code]]></fieldDescription> </field> <field name="amount_counted" class="java.lang.String"> <fieldDescription><![CDATA[amount_counted]]></fieldDescription> </field> <detail> <band height="20" splitType="Stretch"> <textField isStretchWithOverflow="true" isBlankWhenNull="true"> <reportElement positionType="Float" x="0" y="0" width="70" height="20" isRemoveLineWhenBlank="true"> <printWhenExpression><![CDATA[$F{branch_code} != null]]></printWhenExpression> </reportElement> <textFieldExpression><![CDATA[$F{branch_code} + "|" + $F{state_code} + "|" + $F{amount_counted} + "|;" + "n"]]></textFieldExpression> </textField> </band> </detail></jasperReport>[/code]This file generate this output 31|2|36|; 31|4|18|; 31|9|2|; 31|99|6|; [/code]I requiire to delete rows in blanks. That to show like thiis. 31|2|36|; 31|4|18|; 31|9|2|; 31|99|6|;[/code] Please i wait your help. Thanks you.
×
×
  • Create New...