DEV Community

Cover image for In Excel, Enter Values of the same Category in Cells on the Right of the Grouping Cell in Order
Judith-Data-Processing-Hacks
Judith-Data-Processing-Hacks

Posted on

1 1 1 1 1

In Excel, Enter Values of the same Category in Cells on the Right of the Grouping Cell in Order

Problem description & analysis:

In the following Excel table, the 2nd column contains categories and the 3rd column contains detailed data:

A   B   C
1   S.no    Account Product
2   1   AAAQ    atAAG
3   2   BAAQ    bIAAW
4   3   BAAQ    kJAAW
5   4   CAAQ    aAAP
6   5   DAAQ    aAAX
7   6   DAAQ    bAAX
8   7   DAAQ    cAAX
Enter fullscreen mode Exit fullscreen mode

We need to enter values in the same category in cells on the right of the grouping cell in order:

A   B   C   D
1   S.no    Account Product     
2   1   AAAQ    atAAG       
3   2   BAAQ    bIAAW   kJAAW   
4   4   CAAQ    aAAP        
5   5   DAAQ    aAAX    bAAX    cAAX

Enter fullscreen mode Exit fullscreen mode

Solution:

Use SPL XLL to enter the following formula:

=spl("=E(?).group@o(#2).(#1|#2|~.(#3))",A1:C8)
Enter fullscreen mode Exit fullscreen mode

As shown in the picture below:

result table with code entered

Explanation:

The E() function reads data in a stretch of cells as a table. group@o does not sort data before grouping. #1 is a simplified form and represents the 1st column of the 1st member in a group, and ~.(#3) means a sequence made up of values of the 3rd column of a member in a group.

Image of Datadog

The Future of AI, LLMs, and Observability on Google Cloud

Datadog sat down with Google’s Director of AI to discuss the current and future states of AI, ML, and LLMs on Google Cloud. Discover 7 key insights for technical leaders, covering everything from upskilling teams to observability best practices

Learn More

Top comments (2)

Collapse
 
judith677 profile image
Judith-Data-Processing-Hacks • Edited

Here's some additional information you may be interested in:
Plugin Installation Method: c.scudata.com/article/1652061135502
References to other rich Excel operation cases: c.raqsoft.com/article/1651916536524
Reddit community: reddit.com/r/esProc_Desktop/
Discord Community for FREE Excel Help: discord.gg/hgbKEvJ4

Collapse
 
judith677 profile image
Judith-Data-Processing-Hacks

SPL XLL is now FREE to download. Please seize this precious opportunity to level up your Excel skills! scudata.com/download-Desktop

The Most Contextual AI Development Assistant

Pieces.app image

Our centralized storage agent works on-device, unifying various developer tools to proactively capture and enrich useful materials, streamline collaboration, and solve complex problems through a contextual understanding of your unique workflow.

👥 Ideal for solo developers, teams, and cross-company projects

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay