select previous row of particular event in excel
I am current working on a problem.. where i need previous event of applaunch in excel
Input
notification_dismiss
notification_dismiss
notification_dismiss
AppLaunch
notification_dismiss
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
notification_dismiss
AppLaunch
Expected Output
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
microsoft-excel microsoft-excel-2013 microsoft-excel-2016
add a comment |
I am current working on a problem.. where i need previous event of applaunch in excel
Input
notification_dismiss
notification_dismiss
notification_dismiss
AppLaunch
notification_dismiss
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
notification_dismiss
AppLaunch
Expected Output
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
microsoft-excel microsoft-excel-2013 microsoft-excel-2016
Title of your questions says about selection of rows, but sample output looks like you need to delete rows. What exactly do you need? Also what you've tried to solve it?
– Máté Juhász
Dec 19 '18 at 10:29
I suspect what you show as text is placeholders for something else that is likely varied, otherwise, you could simply write the output without the input. It is impossible to provide a solution without knowing what the actual data looks like.
– fixer1234
Dec 19 '18 at 11:53
add a comment |
I am current working on a problem.. where i need previous event of applaunch in excel
Input
notification_dismiss
notification_dismiss
notification_dismiss
AppLaunch
notification_dismiss
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
notification_dismiss
AppLaunch
Expected Output
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
microsoft-excel microsoft-excel-2013 microsoft-excel-2016
I am current working on a problem.. where i need previous event of applaunch in excel
Input
notification_dismiss
notification_dismiss
notification_dismiss
AppLaunch
notification_dismiss
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
notification_dismiss
AppLaunch
Expected Output
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
notification_dismiss
AppLaunch
microsoft-excel microsoft-excel-2013 microsoft-excel-2016
microsoft-excel microsoft-excel-2013 microsoft-excel-2016
edited Dec 19 '18 at 10:19
Nrj
asked Dec 19 '18 at 10:08
NrjNrj
51
51
Title of your questions says about selection of rows, but sample output looks like you need to delete rows. What exactly do you need? Also what you've tried to solve it?
– Máté Juhász
Dec 19 '18 at 10:29
I suspect what you show as text is placeholders for something else that is likely varied, otherwise, you could simply write the output without the input. It is impossible to provide a solution without knowing what the actual data looks like.
– fixer1234
Dec 19 '18 at 11:53
add a comment |
Title of your questions says about selection of rows, but sample output looks like you need to delete rows. What exactly do you need? Also what you've tried to solve it?
– Máté Juhász
Dec 19 '18 at 10:29
I suspect what you show as text is placeholders for something else that is likely varied, otherwise, you could simply write the output without the input. It is impossible to provide a solution without knowing what the actual data looks like.
– fixer1234
Dec 19 '18 at 11:53
Title of your questions says about selection of rows, but sample output looks like you need to delete rows. What exactly do you need? Also what you've tried to solve it?
– Máté Juhász
Dec 19 '18 at 10:29
Title of your questions says about selection of rows, but sample output looks like you need to delete rows. What exactly do you need? Also what you've tried to solve it?
– Máté Juhász
Dec 19 '18 at 10:29
I suspect what you show as text is placeholders for something else that is likely varied, otherwise, you could simply write the output without the input. It is impossible to provide a solution without knowing what the actual data looks like.
– fixer1234
Dec 19 '18 at 11:53
I suspect what you show as text is placeholders for something else that is likely varied, otherwise, you could simply write the output without the input. It is impossible to provide a solution without knowing what the actual data looks like.
– fixer1234
Dec 19 '18 at 11:53
add a comment |
1 Answer
1
active
oldest
votes
I'm assuming that you have data in Range A2:A13
.
Earlier:
After Records been Filtrated:
How it works:
- Write this Formula in Cell
B2
to create one Helper Column & fill it Down.
=IF(A2=A1,COUNTIF($A$2:$A2,A2),1)
- Select entire Data Range(
A2:B13
) and apply Auto Filter.
Filter 1s only.
Adjust Cell references in the Formula as needed.
Gald to help you @Nrj, keep asking ☺
– Rajesh S
Dec 20 '18 at 3:57
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1385865%2fselect-previous-row-of-particular-event-in-excel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm assuming that you have data in Range A2:A13
.
Earlier:
After Records been Filtrated:
How it works:
- Write this Formula in Cell
B2
to create one Helper Column & fill it Down.
=IF(A2=A1,COUNTIF($A$2:$A2,A2),1)
- Select entire Data Range(
A2:B13
) and apply Auto Filter.
Filter 1s only.
Adjust Cell references in the Formula as needed.
Gald to help you @Nrj, keep asking ☺
– Rajesh S
Dec 20 '18 at 3:57
add a comment |
I'm assuming that you have data in Range A2:A13
.
Earlier:
After Records been Filtrated:
How it works:
- Write this Formula in Cell
B2
to create one Helper Column & fill it Down.
=IF(A2=A1,COUNTIF($A$2:$A2,A2),1)
- Select entire Data Range(
A2:B13
) and apply Auto Filter.
Filter 1s only.
Adjust Cell references in the Formula as needed.
Gald to help you @Nrj, keep asking ☺
– Rajesh S
Dec 20 '18 at 3:57
add a comment |
I'm assuming that you have data in Range A2:A13
.
Earlier:
After Records been Filtrated:
How it works:
- Write this Formula in Cell
B2
to create one Helper Column & fill it Down.
=IF(A2=A1,COUNTIF($A$2:$A2,A2),1)
- Select entire Data Range(
A2:B13
) and apply Auto Filter.
Filter 1s only.
Adjust Cell references in the Formula as needed.
I'm assuming that you have data in Range A2:A13
.
Earlier:
After Records been Filtrated:
How it works:
- Write this Formula in Cell
B2
to create one Helper Column & fill it Down.
=IF(A2=A1,COUNTIF($A$2:$A2,A2),1)
- Select entire Data Range(
A2:B13
) and apply Auto Filter.
Filter 1s only.
Adjust Cell references in the Formula as needed.
answered Dec 19 '18 at 11:05
Rajesh SRajesh S
1
1
Gald to help you @Nrj, keep asking ☺
– Rajesh S
Dec 20 '18 at 3:57
add a comment |
Gald to help you @Nrj, keep asking ☺
– Rajesh S
Dec 20 '18 at 3:57
Gald to help you @Nrj, keep asking ☺
– Rajesh S
Dec 20 '18 at 3:57
Gald to help you @Nrj, keep asking ☺
– Rajesh S
Dec 20 '18 at 3:57
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1385865%2fselect-previous-row-of-particular-event-in-excel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Title of your questions says about selection of rows, but sample output looks like you need to delete rows. What exactly do you need? Also what you've tried to solve it?
– Máté Juhász
Dec 19 '18 at 10:29
I suspect what you show as text is placeholders for something else that is likely varied, otherwise, you could simply write the output without the input. It is impossible to provide a solution without knowing what the actual data looks like.
– fixer1234
Dec 19 '18 at 11:53