counting the number of duplicate entries with excel

Discussion related to "Everything" 1.5 Alpha.
Post Reply
anmac1789
Posts: 667
Joined: Mon Aug 24, 2020 1:16 pm

counting the number of duplicate entries with excel

Post by anmac1789 »

I came across this video on youtube about counting the number of blocks of dupes using excel. Is there a way to do this with everything ?

video: https://www.youtube.com/watch?v=mJrEVHYlgqY

Also, can we have isnumber() excel function in everything 1.5a ?
NotNull
Posts: 5457
Joined: Wed May 24, 2017 9:22 pm

Re: counting the number of duplicate entries with excel

Post by NotNull »

anmac1789 wrote: Mon Nov 04, 2024 6:42 am Is there a way to do this with everything ?
No.

anmac1789 wrote: Mon Nov 04, 2024 6:42 am Also, can we have isnumber() excel function in everything 1.5a ?
Take a look at the N() formula or the[N:] search preprocessor function.
anmac1789
Posts: 667
Joined: Mon Aug 24, 2020 1:16 pm

Re: counting the number of duplicate entries with excel

Post by anmac1789 »

NotNull wrote: Mon Nov 04, 2024 8:00 am
anmac1789 wrote: Mon Nov 04, 2024 6:42 am Is there a way to do this with everything ?
No.

anmac1789 wrote: Mon Nov 04, 2024 6:42 am Also, can we have isnumber() excel function in everything 1.5a ?
Take a look at the N() formula or the[N:] search preprocessor function.
which one is this ?
NotNull
Posts: 5457
Joined: Wed May 24, 2017 9:22 pm

Re: counting the number of duplicate entries with excel

Post by NotNull »

anmac1789 wrote: Mon Nov 04, 2024 8:12 am which one is this ?
Please explain?
anmac1789
Posts: 667
Joined: Mon Aug 24, 2020 1:16 pm

Re: counting the number of duplicate entries with excel

Post by anmac1789 »

NotNull wrote: Mon Nov 04, 2024 1:24 pm Take a look at the N() formula or the[N:] search preprocessor function.
NotNull
Posts: 5457
Joined: Wed May 24, 2017 9:22 pm

Re: counting the number of duplicate entries with excel

Post by NotNull »

That doesn't help ... at all.
anmac1789
Posts: 667
Joined: Mon Aug 24, 2020 1:16 pm

Re: counting the number of duplicate entries with excel

Post by anmac1789 »

NotNull wrote: Mon Nov 04, 2024 6:12 pm That doesn't help ... at all.
I meant to say, where is N() formula or the[N:] search pre-processor function ?
void
Developer
Posts: 16665
Joined: Fri Oct 16, 2009 11:31 pm

Re: counting the number of duplicate entries with excel

Post by void »

Everything is not Excel.

To export your results to Excel:
  • In Everything 1.5, from the File menu, click Export.
  • Change the Save as type to: CSV
  • Choose a filename and click Save.
  • Click OK.
All added columns are exported.



To open the exported CSV file in Excel:
  • In Excel, from the Data ribbon, click From Text.
  • Change File origin to: 65001 : Unicode (UTF-8)
  • Click Next.
  • Uncheck Tab.
  • Check Comma.
  • Click Next.
  • Set your desired column types. (or leave as General)
  • Click Finish.
  • Click OK.


[N:]
N()
anmac1789
Posts: 667
Joined: Mon Aug 24, 2020 1:16 pm

Re: counting the number of duplicate entries with excel

Post by anmac1789 »

void wrote: Mon Nov 04, 2024 10:02 pm Everything is not Excel.

To export your results to Excel:
  • In Everything 1.5, from the File menu, click Export.
  • Change the Save as type to: CSV
  • Choose a filename and click Save.
  • Click OK.
All added columns are exported.



To open the exported CSV file in Excel:
  • In Excel, from the Data ribbon, click From Text.
  • Change File origin to: 65001 : Unicode (UTF-8)
  • Click Next.
  • Uncheck Tab.
  • Check Comma.
  • Click Next.
  • Set your desired column types. (or leave as General)
  • Click Finish.
  • Click OK.


[N:]
N()

Thank you, selecting 65001 : Unicode (UTF-8) for file origin really helps to make a table without errors
Post Reply