How to add subtotal and total according 3rd field mentioned below table?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to add subtotal and total according 3rd field mentioned below table?
# 1  
Old 10-15-2015
How to add subtotal and total according 3rd field mentioned below table?

Code:
111AKKK|SHA|20|25
111|AKKK|SHA|15|35
112|ABC|FL|25|45
112|ABC|FL|15|15
115|AKKK|ASH|10|15
115|AKKK|ASH|20|20
112|ABC|FL|25|20
115|AKKK|ASH|30|35
111|AKKK|SHA|10|45
112|ABC|KL|15|15
112|ABC|KL|20|25
115|AKKK|ASH|30|35

please write a shell script
output should be below mentioned table.insert newline subtotal or total according to 3rd filed

Code:
111AKKK|SHA|20|25
111|AKKK|SHA|15|35
111|AKKK|SHA|10|45
111      T_SHA|45|105
115|AKKK|ASH|10|15
115|AKKK|ASH|20|20
115|AKKK|ASH|30|35
115     T_ASH|60|70  
115     total|105|175
112|ABC|KL|25|45
112|ABC|KL|15|15
112|ABC|KL|20|25
115     T_KL|60|85
112|ABC|FL|25|45
112|ABC|FL|15|15
112|ABC|FL|25|20
115     T_FL|65|80
115     total|125|165

Appreciate your answer

Last edited by Corona688; 10-15-2015 at 02:06 PM.. Reason: NA
# 2  
Old 10-15-2015
Your output looks inconsistent, sometimes using |, sometimes using spaces, sometimes having no separator at all. What do you actually want?

And what have you tried?
This User Gave Thanks to Corona688 For This Post:
# 3  
Old 10-15-2015
And, subtotals don't look consistent, and the total is missing.
# 4  
Old 10-15-2015
Quote:
Originally Posted by Corona688
Your output looks inconsistent, sometimes using |, sometimes using spaces, sometimes having no separator at all. What do you actually want?

And what have you tried?
please ignore the space consider the | separtor
# 5  
Old 10-15-2015
And our other questions?
# 6  
Old 10-15-2015
Write shell script above mentioned table output should be
Please arrange the record group wise then subtotal no1 and no2 name wise and then grand total no1 and no2 name wise.Ignore the any separotor consider only pipe
please let me know if u have doubt.

Code:
ACN|CITY|NAME|NO1|NO2
111|AKKK|SHA|20|25
111|AKKK|SHA|15|35
111|AKKK|SHA|10|45
111|     |T_SHA|45|105------Total SHA
115|AKKK|ASH|10|15
115|AKKK|ASH|20|20
115|AKKK|ASH|30|35
115|    |T_ASH|60|70 ---------Total ASH
115|     |total|105|175-------Total=Total SHA+Total ASH
112|ABC|KL|25|45
112|ABC|KL|15|15
112|ABC|KL|20|25
115|   |T_KL|60|85-----------Total KL
112|ABC|FL|25|45
112|ABC|FL|15|15
112|ABC|FL|25|20
115|   |T_FL|65|80------------Toal FL
115     |total|125|165----------Total=Total KL+Toal FL


Last edited by Don Cragun; 10-16-2015 at 03:22 AM.. Reason: Fix CODE tags.
# 7  
Old 10-15-2015
Your output is still inconsistent.

And we still don't know what you have tried, if anything.

Please use code tags for code, [code]stuff[/code]
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk to calculate total and percent off field in file

Trying to use awk to print the lines in file that have either REF or SNV in $3, add a header line, sort by $4 in numerical order. The below code does that already, but where I am stuck is on the last part where the total lines are counted and printed under Total_Targets, under Targets_less_than is... (4 Replies)
Discussion started by: cmccabe
4 Replies

2. Shell Programming and Scripting

Calculate the total 4 field based on the conditions

Please help me to write a script Match with ACNO & NAME if it matched calculate the total val1 val2 val3 and val4 and GT is total of ACNO wise.please check the output Table ----------------- 1005|ANDP|ACN|20|50|10|30 1005|ANDP|ACN|20|10|30|40 1001|AND|NAC|40|50|40|50... (22 Replies)
Discussion started by: kalia4u
22 Replies

3. Shell Programming and Scripting

Need the output in the mentioned Table format

Hi Friends, I have the script output like below: Script Output: ----------------------------------------------------------------------- Details of the Client: ----------------------- name: server1; save set: All; ... (3 Replies)
Discussion started by: akmani
3 Replies

4. Solaris

3rd field in /etc/shadow

Searched and searched, but could not find a official answer. In Solaris, on a new server build, all the system accounts look like this: # cat /etc/shadow root:#########:6445:::::: daemon:NP:6445:::::: bin:NP:6445:::::: sys:NP:6445:::::: adm:NP:6445:::::: lp:NP:6445::::::... (6 Replies)
Discussion started by: flyddw
6 Replies

5. Shell Programming and Scripting

Check a field in a table

I have made a table PRD_WORK_LM.test and it contains one field, ctrl_test. This field contains a 0 or a 1. I want to write a unix script that goes like this: IF ctrl_test = 1 THEN ... ELSE exit FI How can I write this in a script? Do I have to do this within bteq? or outside bteq? can... (5 Replies)
Discussion started by: katled
5 Replies

6. Shell Programming and Scripting

only print line if 3rd field is 01

Similar question... I have a space delimited text file and I want to only print the lines where the 3rd word/field/column is equal to "01" awk '{if $3 = "01" print $0}' something like this. I meant to say: only print line IF 3rd field is 01 (2 Replies)
Discussion started by: ajp7701
2 Replies

7. Shell Programming and Scripting

Adding total of first field for each number in the second field

Dears, I need a script or command which can find the unique number from the second filed and against that number it adds the total of first field . 17215630 , 0 907043 ,1 201050 ,10 394149 ,4 1964 ,9 17215630, 0 907043 ,1 201050, 10 394149 ,4 1964 ,9 1234234, 55 23 ,100 33 ,67 ... (2 Replies)
Discussion started by: shary
2 Replies

8. Shell Programming and Scripting

Total records in table

Hi, I am having two tables. A & B I want to know the total number of records in each table and need to store each value in some variables to process further in the code. How it can be done ? With Regards (2 Replies)
Discussion started by: milink
2 Replies

9. Shell Programming and Scripting

Deleting every 3rd field using awk

I have a file whose format is like the following 350,2,16.2,195,2,8.0 every 3rd column of this file should be deleted. How can i achieve this tried with the following iostat -D -l 2 | /usr/xpg4/bin/awk ' NR>2 { for (i=0;i<=NF;i++)if(i%3==0)$i=""};' but no luck (3 Replies)
Discussion started by: achak01
3 Replies

10. Shell Programming and Scripting

Get the total of a field in all the lines of a group

Hi I have a Fixed format data file where I need to to get the total of the field at certain position in a file for a group of lines. In this data file I need the total of all the field ats position 30:39 for each line starting with 6 and for each group startign with 5. Which means for... (27 Replies)
Discussion started by: appsguy616
27 Replies
Login or Register to Ask a Question