IDEMSInternational / R-Instat

A statistics software package powered by R
http://r-instat.org/
GNU General Public License v3.0
38 stars 102 forks source link

Could the find add a sort of whole cell option? #8963

Open rdstern opened 2 months ago

rdstern commented 2 months ago

@N-thony Here is my example:

image

I wanted to indicate all rows where the fert was zero. You can see it has found those, and also 0.5 values. Perhaps there is a simple regex I could use to distinguish between these two. And I think Excel has an option to choose just those matches where the whole cell is specified? Not urgent though unless very easy. I found another way now which was (simply?) to make a filter of the rows when fert is zero!

N-thony commented 1 month ago

@N-thony Here is my example:

image

I wanted to indicate all rows where the fert was zero. You can see it has found those, and also 0.5 values. Perhaps there is a simple regex I could use to distinguish between these two. And I think Excel has an option to choose just those matches where the whole cell is specified? Not urgent though unless very easy. I found another way now which was (simply?) to make a filter of the rows when fert is zero!

@rdstern you could use the regex option and ^0$ as the regex pattern shown below image