- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Grouping Data
Hi,
I would like to group data as the attached image.
whenever there is a "No" the result will be a 0.
When ever there is a "Yes" the result will be a running number (1,2,3...) for each group.
How do I implement this in a formula (or script?).
Thank you very much.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Grouping Data
Copy this expression and paste it into the Formula Editor for the Grouping column:
If(
Row() == 1,
temp = :Y == "Yes";
temp;,
:Y == "Yes" & Lag( :Y ) == "No",
temp++;
temp;,
:Y == "Yes", temp,
0
)
Change the name of Y to the original data column.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Grouping Data
Copy this expression and paste it into the Formula Editor for the Grouping column:
If(
Row() == 1,
temp = :Y == "Yes";
temp;,
:Y == "Yes" & Lag( :Y ) == "No",
temp++;
temp;,
:Y == "Yes", temp,
0
)
Change the name of Y to the original data column.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Grouping Data
Thank you very much