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?
# 15  
Old 10-16-2015
Code:
awk -F'|' '
  FNR>1{
     idx=$1 FS $2 FS $3 FS $4
     v5[idx]=(idx in v5)?v5[idx] FS $5:$5 
     v6[idx]=(idx in v6)?v6[idx] FS $6:$6
  }
  END {for(i in v5) print i,v5[i],v6[i]}' OFS='|' myFile

# 16  
Old 10-16-2015
Thanks a lot Vgresh99 for ur replay Is it possible to add a header
Code:
ACN|NAME|CTY|CTY|NO1-----------|NO2-------

we can add header using echo can we use same in awk

Last edited by Corona688; 10-16-2015 at 07:44 PM..
# 17  
Old 10-17-2015
Try
Code:
BEGIN { print "ACN|NAME|CTY|CTY|NO1-----------|NO2-------"}

# 18  
Old 10-19-2015
If the 4th and the 5th filed are floating point then how should i do the the addition below mentioned syntax i am using unabe to add geetting error
Code:
       bc |SUM1+=$4
         bc |SUM2+=$5
         bc |TOT1+=$4
         bc |TOT2+=$5

---------- Post updated at 03:39 AM ---------- Previous update was at 03:35 AM ----------

for example 151,24.25 124,78.00
123,20.45 123,23.78

Moderator's Comments:
Mod Comment edit by bakunin: it obviously is pretty hard to use CODE-tags. To lighten the burden of doing so this infraction will put you in read-only-mode. I hope this helps.


---------- Post updated at 04:00 AM ---------- Previous update was at 03:39 AM ----------

Quote:
Originally Posted by RudiC
Your sort is missing the key to sort by (unless you want to sort from the start of line), and your awk just prints an empty line when field 1 (not if "name", i.e. field 3) changes and doesn't do any totals. BTW, how do we know "ASH" and "SHA" belong together, i.e. are to be grouped, as well as "FL" and "KL"?

As an interim step, try
Code:
sort -t "|" -k3,3 file1 | awk -F\| '
FNR==1  {TMP=$3
        }
TMP!=$3 {print "subtotal", TMP, SUM1, SUM2; SUM1=SUM2=0
        }
        {TMP=$3
         SUM1+=$4
         SUM2+=$5
         TOT1+=$4
         TOT2+=$5
        }
1
END     {print "subtotal", TMP, SUM1, SUM2; SUM1=SUM2=0
         print "   total","   ", TOT1, TOT2
        }
' OFS="|"
115|AKKK|ASH|10|15
115|AKKK|ASH|20|20
115|AKKK|ASH|30|35
115|AKKK|ASH|30|35
subtotal|ASH|90|105
112|ABC|FL|15|15
112|ABC|FL|25|20
112|ABC|FL|25|45
subtotal|FL|65|80
112|ABC|KL|15|15
112|ABC|KL|20|25
subtotal|KL|35|40
111|AKKK|SHA|10|45
111|AKKK|SHA|15|35
111|AKKK|SHA|20|25
subtotal|SHA|45|105
   total|   |235|330





If the 4th and the 5th filed are floating poit then how should i will do the the addition below mentioned syntax i am using unabe to add geetting error

Code:
bc |SUM1+=$4
bc |SUM2+=$5
bc |TOT1+=$4
bc |TOT2+=$5
for example 151,24.25 124,78.00
123,20.45 123,23.78

Last edited by bakunin; 10-19-2015 at 05:53 AM..
# 19  
Old 10-19-2015
awk is working with double variables anyhow. No need for additional tricks.
# 20  
Old 10-19-2015
if the 4th and fifth filed are below mention number getting wrong output please help me out of this

111|KKK|ASH|10.25|15,123.00
115|AKKK|ASH|20.15|14,123.00
115|AKKK|ASH|30.00|15,123.00
115|AKKK|ASH|30.00|16,123.00
subtotal|ASH|90.4|60
112|ABC|FL|15,234.00|15,112.00
112|ABC|FL|25.00|20.11
112|ABC|FL|25.00|45.00
subtotal|FL|65|80.11
112|ABC|KL|15.00|15.00
112|ABC|KL|20.00|25.00
subtotal|KL|35|40
111|AKKK|SHA|10,123.00|45.30
111|AKKK|SHA|15,23.00|35.00
111|AKKK|SHA|20,23.00|25,23.00
subtotal|SHA|45|105.3
total| |235.4|285.41
# 21  
Old 10-19-2015
Remove the commas.
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