Phriction Projects Wikis Bioimaging And Optics Platform Computers & Servers at the BIOP Excel History Version 2 vs 3
Version 2 vs 3
Version 2 vs 3
Edits
Edits
- Delete by oburri, Version 3
- Mar 7 2023 13:10
- Edit by romainGuiet, Version 2
- Jul 6 2017 13:13
« Previous Change | Most Recent Change |
Edit Older Version 2... |
Content Changes
Content Changes
Here you'll find some tricks about Excel.
= Some smart formulas=
== Find case with a character (or a series)==
Let's assume you have a column filled with e-mail addresses and other pieces of information.
You want to sort only the e-mail addresses.
The function FIND return a #VALUE error
> =IF(FIND("@";A1)<>"#VALUE";A1;"")
So using IFERROR we can retrieve only the case with @
> =IFERROR(IF(FIND("@";A1);A1;"");"")
== You have two lists, you want to eliminate "doublon" ==
> =IF( COUNTIFS( $C$1:$C$28;A1)> 0; "";A1)
list of "already done" Column C , fom 1 to 28.
list of "all" , Colum A
use COUNTIFS, if > 0 , exist in the lsit "already done" !
Here you'll find some tricks about Excel.
= Some smart formulas=
== Find case with a character (or a series)==
Let's assume you have a column filled with e-mail addresses and other pieces of information.
You want to sort only the e-mail addresses.
The function FIND return a #VALUE error
> =IF(FIND("@";A1)<>"#VALUE";A1;"")
So using IFERROR we can retrieve only the case with @
> =IFERROR(IF(FIND("@";A1);A1;"");"")
== You have two lists, you want to eliminate "doublon" ==
> =IF( COUNTIFS( $C$1:$C$28;A1)> 0; "";A1)
list of "already done" Column C , fom 1 to 28.
list of "all" , Colum A
use COUNTIFS, if > 0 , exist in the lsit "already done" !
c4science · Help