0

Ex:

Sheet1 - Kollekte Ontvang

Column 1             Column 2     Column 3
Date             ProjectCodes         Amount


01/11/2024        G172                 1000
01/12/2024        G172                 1100
01/010/2025       G172                 1150

Sheet2 (want the values to show here)

column 1   Column2  Column3  Column4
G172       1000      1100     1150

Which formula do I use

Thank you for the help

used

=IFERROR(XLOOKUP(L$2&$C3,'KOLLEKTE ONTVANG'!$E:$E&'KOLLEKTE ONTVANG'!$H:$H,'KOLLEKTE ONTVANG'!$S:$S),0)

and

=SUMIFS('KOLLEKTE ONTVANG'!$S:$S,'KOLLEKTE ONTVANG'!$E:$E,S$2,'KOLLEKTE ONTVANG'!$H:$H,Opsomming!$C3,'KOLLEKTE ONTVANG'!$A:$A,">=01/10/2024",'KOLLEKTE ONTVANG'!$A:$A,"<=28/02/2025")
1
  • This already has a solution and has been posted multiple times, please make an attempt to research the forum first! Commented Feb 11 at 14:48

1 Answer 1

2

Try the following formula:

=TRANSPOSE(FILTER(C$2:C$7,B$2:B$7=F2))

An example:

enter image description here

Sign up to request clarification or add additional context in comments.

1 Comment

I was about to write the same thing, using =ToRow() instead of =Transpose() (yours is better 😀).

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.