Easy for some, mindblowing for me...

wigarth

Board Regular
Joined
Apr 16, 2016
Messages
51
Office Version
  1. 365
Platform
  1. Windows
Hi!

My list of products to customers becomes to big to be effective sometimes.

Issue: I Have an area with data i need filter a bit and paste into a new area.

- Original area must not be changed, altered or hidden at any point.
- structure of new area must have structural integrity due to need of linking other sheets to data from it.
- Basically hide all products that does not need to be in the list (0 sold items)

have made an example of my sheet.
Would really apreciate any help.

Example.png
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
How about
Fluff.xlsm
ABCDEFGHIJKLMNO
1CustomerProduct 1Product 2Product 3Product 4Product 5Product 6Product 7Product 8Product 9Product 10Product 11Product 12Product 13Product 14
2Customer 13
3Customer 22
4Customer 356
5Customer 4
6Customer 58
7Customer 6
8Customer 7
9Customer 8
10Customer 9
11Customer 10
12Customer 11
13Customer 12
14Customer 13
15Customer 14
16Customer 15
17
18
19CustomerProduct 1Product 3Product 4Product 6
20Customer 10030
21Customer 22000
22Customer 30506
23Customer 40000
24Customer 50080
25Customer 60000
26Customer 70000
27Customer 80000
28Customer 90000
29Customer 100000
30Customer 110000
31Customer 120000
32Customer 130000
33Customer 140000
34Customer 150000
35sum25116
Sheet5
Cell Formulas
RangeFormula
A19:E35A19=LET(s,BYCOL(B2:BS16,LAMBDA(bc,SUM(bc))),VSTACK(HSTACK(A1:A16,FILTER(B1:BS16,s)),HSTACK("sum",FILTER(s,s))))
Dynamic array formulas.
 
Upvote 0
Solution
=LET(s,BYCOL(B2:BS16,LAMBDA(bc,SUM(bc))),VSTACK(HSTACK(A1:A16,FILTER(B1:BS16,s)),HSTACK("sum",FILTER(s,s))))
Hi!

Thanks for replying.

I get what you are trying to do, and i have a feeling you are on to something.
I just don't have a clue how to do it myself.
However, I get a "Not valid function" message to this. (i ctrl+shift ckiked enter when pasting this formula into A19
(Excel highlights the "Filter" part of the formula.)

Anything I am not getting?
 
Upvote 0
In that case what build version are you on

Build.jpg
 
Upvote 0
I got this formula to accept all functions, but it gives me a #name fault instead of the desired results.

Excel Formula:
=LET(s;BYCOL(B2:BS16;LAMBDA(bc;SUM(bc)));VSTACK(HSTACK(A1:A16;FILTRER(B1:BS16;s));HSTACK("sum";FILTRER(s;s))))

From your formula, I changed " , " to " ; " and "Filter" to "Filtrer" wich is the norwegian version of the function.
 
Upvote 0
OK, you will need to translate all the functions, not sure if this is correct but try
Excel Formula:
=LET(s;BYCOL(B2:BS16;LAMBDA(bc;SUMMER(bc)));VSTACK(HSTACK(A1:A16;FILTRER(B1:BS16;s));HSTACK("sum";FILTRER(s;s))))
 
Upvote 0

Forum statistics

Threads
1,215,217
Messages
6,123,670
Members
449,115
Latest member
punka6

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