How to use VBA to count the number of days interval?












-1















enter image description here



How can I use VBA to find out the days interval? For the same num, can i count the number of dates between the first and the last date?



For example, I want to display the number of days '886000' took based on the first and the last date, it took 7 days and how can i display it on column J 'Interval'?










share|improve this question




















  • 1





    Do you need a VBA solution (and if so what have you tried)? What version of Excel do you have? (asking since this is doable with a formula)

    – BigBen
    Nov 16 '18 at 3:30











  • @BigBen I'm using Excel 2016 and VBA solution is recommended but if formula works then its great

    – Beaty
    Nov 16 '18 at 5:51
















-1















enter image description here



How can I use VBA to find out the days interval? For the same num, can i count the number of dates between the first and the last date?



For example, I want to display the number of days '886000' took based on the first and the last date, it took 7 days and how can i display it on column J 'Interval'?










share|improve this question




















  • 1





    Do you need a VBA solution (and if so what have you tried)? What version of Excel do you have? (asking since this is doable with a formula)

    – BigBen
    Nov 16 '18 at 3:30











  • @BigBen I'm using Excel 2016 and VBA solution is recommended but if formula works then its great

    – Beaty
    Nov 16 '18 at 5:51














-1












-1








-1


0






enter image description here



How can I use VBA to find out the days interval? For the same num, can i count the number of dates between the first and the last date?



For example, I want to display the number of days '886000' took based on the first and the last date, it took 7 days and how can i display it on column J 'Interval'?










share|improve this question
















enter image description here



How can I use VBA to find out the days interval? For the same num, can i count the number of dates between the first and the last date?



For example, I want to display the number of days '886000' took based on the first and the last date, it took 7 days and how can i display it on column J 'Interval'?







excel vba






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 3:26









BigBen

6,0472618




6,0472618










asked Nov 16 '18 at 3:24









BeatyBeaty

13




13








  • 1





    Do you need a VBA solution (and if so what have you tried)? What version of Excel do you have? (asking since this is doable with a formula)

    – BigBen
    Nov 16 '18 at 3:30











  • @BigBen I'm using Excel 2016 and VBA solution is recommended but if formula works then its great

    – Beaty
    Nov 16 '18 at 5:51














  • 1





    Do you need a VBA solution (and if so what have you tried)? What version of Excel do you have? (asking since this is doable with a formula)

    – BigBen
    Nov 16 '18 at 3:30











  • @BigBen I'm using Excel 2016 and VBA solution is recommended but if formula works then its great

    – Beaty
    Nov 16 '18 at 5:51








1




1





Do you need a VBA solution (and if so what have you tried)? What version of Excel do you have? (asking since this is doable with a formula)

– BigBen
Nov 16 '18 at 3:30





Do you need a VBA solution (and if so what have you tried)? What version of Excel do you have? (asking since this is doable with a formula)

– BigBen
Nov 16 '18 at 3:30













@BigBen I'm using Excel 2016 and VBA solution is recommended but if formula works then its great

– Beaty
Nov 16 '18 at 5:51





@BigBen I'm using Excel 2016 and VBA solution is recommended but if formula works then its great

– Beaty
Nov 16 '18 at 5:51












1 Answer
1






active

oldest

votes


















0














Since you're using Excel 2016, take advantage of MAXIFS and MINIFS.



=MAXIFS(I:I,H:H,H1)-MINIFS(I:I,H:H,H1)+1


enter image description here



If those formulas are not available, alternately use MAX and IF within an array formula, entered using Ctrl + Shift + Enter.



=MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1


enter image description here






share|improve this answer


























  • It gives me #NAME? value

    – Beaty
    Nov 16 '18 at 6:02











  • I just realized that MAXIFS and MINIFS are only available with an Office 365 subscription. I'll tweak the answer.

    – BigBen
    Nov 16 '18 at 6:04













  • How can i make the count appear at the last row of the date, for e.g. for 888600 make the count appear on J9 instead

    – Beaty
    Nov 16 '18 at 7:06











  • Maybe =IF(COUNTIF($H$1:H1,H1)=COUNTIF($H$1:$H$9,H1),MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1,"") (still enter with CSE and drag down as needed). This will return a blank string until the last instance of 888600.

    – BigBen
    Nov 16 '18 at 7:16













Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53330970%2fhow-to-use-vba-to-count-the-number-of-days-interval%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









0














Since you're using Excel 2016, take advantage of MAXIFS and MINIFS.



=MAXIFS(I:I,H:H,H1)-MINIFS(I:I,H:H,H1)+1


enter image description here



If those formulas are not available, alternately use MAX and IF within an array formula, entered using Ctrl + Shift + Enter.



=MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1


enter image description here






share|improve this answer


























  • It gives me #NAME? value

    – Beaty
    Nov 16 '18 at 6:02











  • I just realized that MAXIFS and MINIFS are only available with an Office 365 subscription. I'll tweak the answer.

    – BigBen
    Nov 16 '18 at 6:04













  • How can i make the count appear at the last row of the date, for e.g. for 888600 make the count appear on J9 instead

    – Beaty
    Nov 16 '18 at 7:06











  • Maybe =IF(COUNTIF($H$1:H1,H1)=COUNTIF($H$1:$H$9,H1),MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1,"") (still enter with CSE and drag down as needed). This will return a blank string until the last instance of 888600.

    – BigBen
    Nov 16 '18 at 7:16


















0














Since you're using Excel 2016, take advantage of MAXIFS and MINIFS.



=MAXIFS(I:I,H:H,H1)-MINIFS(I:I,H:H,H1)+1


enter image description here



If those formulas are not available, alternately use MAX and IF within an array formula, entered using Ctrl + Shift + Enter.



=MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1


enter image description here






share|improve this answer


























  • It gives me #NAME? value

    – Beaty
    Nov 16 '18 at 6:02











  • I just realized that MAXIFS and MINIFS are only available with an Office 365 subscription. I'll tweak the answer.

    – BigBen
    Nov 16 '18 at 6:04













  • How can i make the count appear at the last row of the date, for e.g. for 888600 make the count appear on J9 instead

    – Beaty
    Nov 16 '18 at 7:06











  • Maybe =IF(COUNTIF($H$1:H1,H1)=COUNTIF($H$1:$H$9,H1),MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1,"") (still enter with CSE and drag down as needed). This will return a blank string until the last instance of 888600.

    – BigBen
    Nov 16 '18 at 7:16
















0












0








0







Since you're using Excel 2016, take advantage of MAXIFS and MINIFS.



=MAXIFS(I:I,H:H,H1)-MINIFS(I:I,H:H,H1)+1


enter image description here



If those formulas are not available, alternately use MAX and IF within an array formula, entered using Ctrl + Shift + Enter.



=MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1


enter image description here






share|improve this answer















Since you're using Excel 2016, take advantage of MAXIFS and MINIFS.



=MAXIFS(I:I,H:H,H1)-MINIFS(I:I,H:H,H1)+1


enter image description here



If those formulas are not available, alternately use MAX and IF within an array formula, entered using Ctrl + Shift + Enter.



=MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1


enter image description here







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 16 '18 at 6:10

























answered Nov 16 '18 at 5:53









BigBenBigBen

6,0472618




6,0472618













  • It gives me #NAME? value

    – Beaty
    Nov 16 '18 at 6:02











  • I just realized that MAXIFS and MINIFS are only available with an Office 365 subscription. I'll tweak the answer.

    – BigBen
    Nov 16 '18 at 6:04













  • How can i make the count appear at the last row of the date, for e.g. for 888600 make the count appear on J9 instead

    – Beaty
    Nov 16 '18 at 7:06











  • Maybe =IF(COUNTIF($H$1:H1,H1)=COUNTIF($H$1:$H$9,H1),MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1,"") (still enter with CSE and drag down as needed). This will return a blank string until the last instance of 888600.

    – BigBen
    Nov 16 '18 at 7:16





















  • It gives me #NAME? value

    – Beaty
    Nov 16 '18 at 6:02











  • I just realized that MAXIFS and MINIFS are only available with an Office 365 subscription. I'll tweak the answer.

    – BigBen
    Nov 16 '18 at 6:04













  • How can i make the count appear at the last row of the date, for e.g. for 888600 make the count appear on J9 instead

    – Beaty
    Nov 16 '18 at 7:06











  • Maybe =IF(COUNTIF($H$1:H1,H1)=COUNTIF($H$1:$H$9,H1),MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1,"") (still enter with CSE and drag down as needed). This will return a blank string until the last instance of 888600.

    – BigBen
    Nov 16 '18 at 7:16



















It gives me #NAME? value

– Beaty
Nov 16 '18 at 6:02





It gives me #NAME? value

– Beaty
Nov 16 '18 at 6:02













I just realized that MAXIFS and MINIFS are only available with an Office 365 subscription. I'll tweak the answer.

– BigBen
Nov 16 '18 at 6:04







I just realized that MAXIFS and MINIFS are only available with an Office 365 subscription. I'll tweak the answer.

– BigBen
Nov 16 '18 at 6:04















How can i make the count appear at the last row of the date, for e.g. for 888600 make the count appear on J9 instead

– Beaty
Nov 16 '18 at 7:06





How can i make the count appear at the last row of the date, for e.g. for 888600 make the count appear on J9 instead

– Beaty
Nov 16 '18 at 7:06













Maybe =IF(COUNTIF($H$1:H1,H1)=COUNTIF($H$1:$H$9,H1),MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1,"") (still enter with CSE and drag down as needed). This will return a blank string until the last instance of 888600.

– BigBen
Nov 16 '18 at 7:16







Maybe =IF(COUNTIF($H$1:H1,H1)=COUNTIF($H$1:$H$9,H1),MAX(IF($H$1:$H$9=H1,$I$1:$I$9))-MIN(IF($H$1:$H$9=H1,$I$1:$I$9))+1,"") (still enter with CSE and drag down as needed). This will return a blank string until the last instance of 888600.

– BigBen
Nov 16 '18 at 7:16




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53330970%2fhow-to-use-vba-to-count-the-number-of-days-interval%23new-answer', 'question_page');
}
);

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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini