Recherches de formules pour éviter copier-coller et décaler des recherchex

mathoscarlos

New Member
Joined
Sep 30, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Bonjour,

Je souhaite automatiser une tache qui me demande de nombreux copier-coller :
- dans Feuille 2 j'ai les réponses à un questionnaire. Si j'ai plusieurs référénces vendues, les références viennent dans les colonnes
- dans Feuille 1 je veux les mêmes infos mais que les références viennent en ligne. Le problème c'est que si j'ai vendu 4 références, je dois décaler de 4 lignes, si j'ai vendu 5, je dois décaler de 5 lignes etc... Je n'arrive pas à trouver la fonction qui me gère ce décalage.

Voici le doc exemple

Pouvez-vous m'aider ?
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Bonjour Mathoscarlos,

Voici une formule qui pourra peut-être vous aider.
Excel Formula:
=LAMBDA(formDate;formRef;formInfoClient;LET(
listDate;FILTER(formDate;formDate<>"");
nbTicket;LIGNES(listDate);
listRef;CHOOSEROWS(formRef;SEQUENCE(nbTicket));
listInfo;CHOOSEROWS(formInfoClient;SEQUENCE(nbTicket));
transformedCOL;BYCOL(listRef;LAMBDA(c;BYROW(SEQUENCE(nbTicket);LAMBDA(r;JOIN("~";chooserows(listDate;r);1;chooserows(c;r);chooserows(listInfo;r))))));
tableTicket;byrow(FLATTEN(transformedCOL);LAMBDA(r;SPLIT(r;"~";VRAI();FAUX())));
FILTER(tableTicket;CHOOSECOLS(tableTicket;3)<>"")))('Feuille 2'!A2:A;'Feuille 2'!C2:G;'Feuille 2'!H2:K)

simplement changer la dernière section
Excel Formula:
('Feuille 2'!A2:A;'Feuille 2'!C2:G;'Feuille 2'!H2:K)
par les plages qui concernent respectivement les dates de ticket; références; informations sur le client et/ou commande en vous assurant de ne pas sélectionner les entêtes.
 
Upvote 0

Forum statistics

Threads
1,224,812
Messages
6,181,094
Members
453,021
Latest member
Justyna P

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