importing excel data without sub totals - talend

input data is in excel -
highlighted yellow ones are sub-totals of above rows for particular states
enter image description here
output should be look like this in talend -
enter image description here

Related

Dynamic rows in Crystal report letter template

I got a requirement like, in the text object letter template there is a table, and if no values rows should disappear, and below text needs to come upwards accordingly.
Is it possible?
[enter image description here][1]
If you feed the table rows from data records (detail section) or Group data (e.g. Group footer), that would happen automatically. No data = no section.
If you feed the table rows from some other logic, you can place each table row in a different section (e.g. GF1a, GF1b, ...) and use a suppress expression in the section property to dynamically suppress based on your logic.
Alternatively, there's at least one 3rd-party tool (see list here) that can feed data from a Crystal report into MS Word template document. That tool can indeed expand/remove table rows based on data in the report. The document can then be printed or saved as dynamically named Word or PDF files.

Filter uitable content by user parameters

I need some help. I have loaded large amount of data 52500x9 from .xlsx into UITable(whole year dataset 10min sampling period)component. I need to filter these data by date via DatePicker is it possible ? for example I want to display values from 1.1.2018 - to 12.1.2018
Here is how input looks like
enter code here

Microsoft Word Mail Merge - Percentage format when cell contains both percent and text

I am performing a mail merge and have an issue when trying to correct the percentage format. The problem is that the source column contains both a percent value and text. If I map the field, percents display as decimal in word. If I use the following, it displays correctly:
{=«Percent»*100 # 0%}
However, now when the row contains text I receive an error.
Is there another way I can do this?
Here is the formula you need
{={MERGEFIELD XYZ}*100\ #0.00%}
No, Word has no way to do string manipulation in its fields. Add another field / column to your data source for the text, or format the percentile in Excel before performing the merge.

How to combine multiple excel data into one excel with all sheets?

Actually I have a list of customers from all the countries in one sheet name "ALL".
Problem: I have to crate separate sheets for group of countries like for USA sheet name will be USA and for Australia,Germany and Switzerland sheet name will be Central_Region output will be like below image.
What I have tried till now :- I used tFilterRow component and I have got all the separate excel files group by countries . now trying to combine in one file.
For Example : I have 5 excel workbook files each has one sheet like excel1.xls has sheet "USA" other excel2.xls has sheet "Canada" and same other 3 are in same way.
Now I want to generate a single excel workbook which will have all the sheets like "USA", "Canada" and all other sheets from other excels.
I tried using iUnite but it did not help it just append all the sheets data into one sheet.Like below image
Download this add-ins
Open one your excel file and then open this add-ins file (also you can install that)
when you open this file, select Enable Macro.
Go to DATA tab on excel file and select RDB Merge add-in.
set properties and push Merge Button.
With this, your excel fills will merge in one sheet.
If you can't know in which order row will appear, you could store your data in csv files for each country.
Then you can add each csv file into a separate sheet on the Excel file using Write after.
If rows are coming in the rigth order, like all USA then Canada etc . . . you can directly use Write after in your ExcelOutput behind your tFilter but i highly suppose this is not the case.
If you have same structure excel file with different in sheet name then you have to make job like this.
tFileList---tFileInputExcel-----tMap---tFileOuputExcel
Set source directory where you get all the files to the tFileList component.
Use global varibale which hold "file with path" information and assign to the file name text box of tFileInputExcel component.
In select Sheet box assign index instead sheet name.
check Append property of tFileOuputExcel component you can merge all files in single one.
Note: in tMap you can add transformation or make changes in column sequence of output.

Issue with repeating static text in Detail band

I am using iReport to make a jrxml file. When I create a file and click on "Launch report wizard" it load some sql query from my database, configured with iReport.
I write some static data and also use some image to make a sample pdf file. I write some string in title field and also in column and detail1. Title section show once but value of column header and detail1 repeat many times. My repeated data is equals to the number of data in my table which I load at creation time. How can I stop to repeat my data?
whatever you write in your detail1 it will repeated until your query ends