How get Sum value via "HSN Code" vise ?????? (without pivotable / without filter/ without VBA)

krunal123

Board Regular
Joined
Jun 26, 2020
Messages
169
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
image_2021-06-25_121907.png


# How get Sum value via "HSN Code" vise ??????

Advance Condition :
"if 100 or More Entries in sheets how it possible to solve query via Formula this Concepts "


(without pivotable / without filter/ without VBA)
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Hi Krunal123,

I don't see an example of what you are SUMing but SUMIF or SUMIFS may help.

Krunal123-v2.xlsx
ABCDEFGH
1HSN CodeAmount
2HSN CodeITMEAMOUNT808010011
3808010019808090212
48080902119808010013
5808110000808090214
6808010015
7808090216
8808090217
9
Sheet1
Cell Formulas
RangeFormula
C3:C5C3=SUMIFS(H:H,G:G,A3)
 
Upvote 0
PQ solution
Book2
ABCDE
1HSN CodeAmountHSN Code Sum
280801001316,538080100115 829,65
3808090216948,78080902119 266,00
4808010017002,17808080009 292,78
5808090214226,15
6808010018510,95
7808090218091,15
8808080009292,78
9
10
11
12
Sheet1


Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Grouped Rows" = Table.Group(Source, {"HSN Code"}, {{"Sum", each List.Sum([Amount]), type number}})
in
    #"Grouped Rows"

no coding neccesery - done from he UI only - group by feature
 
Upvote 0

Forum statistics

Threads
1,215,316
Messages
6,124,225
Members
449,148
Latest member
sweetkt327

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top